[][src]Trait ndarray_linalg::qr::QRSquareInplace

pub trait QRSquareInplace: Sized {
    type R;
    fn qr_square_inplace(&mut self) -> Result<(&mut Self, Self::R)>;
}

QR decomposition for mutable reference of square matrix

Associated Types

type R

Loading content...

Required methods

fn qr_square_inplace(&mut self) -> Result<(&mut Self, Self::R)>

Loading content...

Implementations on Foreign Types

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

type R = Array2<A>

Loading content...

Implementors

Loading content...