ndarray_linalg::qr

Trait QRSquareInplace

Source
pub trait QRSquareInplace: Sized {
    type R;

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

QR decomposition for mutable reference of square matrix

Required Associated Types§

Source

type R

Required Methods§

Source

fn qr_square_inplace(&mut self) -> Result<(&mut 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> QRSquareInplace 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_inplace(&mut self) -> Result<(&mut Self, Self::R)>

Implementors§