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

    fn qr_into(self) -> Result<(Self::Q, Self::R)>;
}
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

Required Methods

Implementations on Foreign Types

Implementors