pub trait QRSquare: Sized {
type Q;
type R;
// Required method
fn qr_square(&self) -> Result<(Self::Q, Self::R)>;
}
Expand description
QR decomposition for square matrix reference
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.