pub trait QRSquareInto: Sized {
    type R;

    fn qr_square_into(self) -> Result<(Self, Self::R)>;
}
Expand description

QR decomposition for square matrix

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors