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

Required Methods

Implementations on Foreign Types

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

[src]

Implementors