Trait ndarray_linalg::qr::QRSquareMut [] [src]

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

Implementations on Foreign Types

impl<A, S> QRSquareMut for ArrayBase<S, Ix2> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

[src]

Implementors