Trait linfa_linalg::qr::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§