QRInto

pub trait QRInto: Sized {
    type Q;
    type R;

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

QR decomposition

This creates copy due for reshaping array. To avoid copy and the matrix is square, please use QRSquare* traits.

Required Associated Types§

Source

type Q

Source

type R

Required Methods§

Source

fn qr_into(self) -> Result<(Self::Q, 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> QRInto for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,