Trait ndarray_linalg::qr::QRSquareMut []

pub trait QRSquareMut: Sized {
    type R;
    fn qr_square_mut<'a>(&'a mut self) -> Result<(&'a mut Self, Self::R)>;
}

QR decomposition for mutable reference of square matrix

Associated Types

Required Methods

Implementors