Trait ndarray_linalg::qr::QRSquare[][src]

pub trait QRSquare: Sized {
    type Q;
    type R;
    fn qr_square(&self) -> Result<(Self::Q, Self::R)>;
}

QR decomposition for square matrix reference

Associated Types

type Q[src]

type R[src]

Loading content...

Required methods

fn qr_square(&self) -> Result<(Self::Q, Self::R)>[src]

Loading content...

Implementations on Foreign Types

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

type Q = Array2<A>

type R = Array2<A>

Loading content...

Implementors

Loading content...