[][src]Trait ndarray_linalg::qr::QRSquareInto

pub trait QRSquareInto: Sized {
    type R;
    fn qr_square_into(self) -> Result<(Self, Self::R)>;
}
[]

QR decomposition for square matrix

Associated Types

type R

Required methods

fn qr_square_into(self) -> Result<(Self, Self::R)>

Implementations on Foreign Types

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

type R = Array2<A>

Implementors