Trait ndarray_linalg::qr::QR[][src]

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

QR decomposition for matrix reference

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

Associated Types

Required methods

Implementations on Foreign Types

Implementors