Trait ndarray_linalg::qr::QRInto[][src]

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

QR decomposition

This creates copy due for reshaping array. To avoid copy and the matrix is square, please use QRSquare* traits.

Associated Types

type Q[src]

type R[src]

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

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

type Q = Array2<A>

type R = Array2<A>

Loading content...

Implementors

Loading content...