Trait ndarray_linalg::qr::QRInto

source ·
pub trait QRInto: Sized {
    type Q;
    type R;

    // Required method
    fn qr_into(self) -> Result<(Self::Q, Self::R)>;
}
Expand description

QR decomposition

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

Required Associated Types§

source

type Q

source

type R

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

type Q = ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>

source§

type R = ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>

source§

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

Implementors§