QRSquareInto

Trait QRSquareInto 

Source
pub trait QRSquareInto: Sized {
    type R;

    // Required method
    fn qr_square_into(self) -> Result<(Self, Self::R), LinalgError>;
}
Expand description

QR decomposition for square matrix

Required Associated Types§

Source

type R

Required Methods§

Source

fn qr_square_into(self) -> Result<(Self, Self::R), LinalgError>

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.

Implementors§

Source§

impl<A, S> QRSquareInto for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,