Trait QRSquareInto

Source
pub trait QRSquareInto: Sized {
    type R;

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

QR decomposition for square matrix

Required Associated Typesยง

Source

type R

Required Methodsยง

Source

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

Dyn Compatibilityยง

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Typesยง

Sourceยง

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

Sourceยง

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

Sourceยง

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

Implementorsยง