[][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

Loading content...

Required methods

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

Loading content...

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>

Loading content...

Implementors

Loading content...