Trait ndarray_linalg::qr::QRSquare[][src]

pub trait QRSquare: Sized {
    type Q;
    type R;
    fn qr_square(&self) -> Result<(Self::Q, Self::R)>;
}
Expand description

QR decomposition for square matrix reference

Associated Types

Required methods

Implementations on Foreign Types

Implementors