Trait QRInto

Source
pub trait QRInto {
    type Decomp;

    // Required method
    fn qr_into(self) -> Result<Self::Decomp>;
}
Expand description

QR decomposition for matrix by value

Required Associated Types§

Required Methods§

Source

fn qr_into(self) -> Result<Self::Decomp>

Decomposes the matrix into semi-orthogonal matrix Q and upper-triangular matrix R, such that Q * R yields the original matrix. Matrix rows must be equal or greater than number of columns.

Implementations on Foreign Types§

Source§

impl<A: NdFloat, S: DataMut<Elem = A>> QRInto for ArrayBase<S, Ix2>

Source§

type Decomp = QRDecomp<A, S>

Source§

fn qr_into(self) -> Result<Self::Decomp>

Implementors§