QR

Trait QR 

Source
pub trait QR {
    type Elem;

    // Required method
    fn qr(
        &self,
    ) -> Result<(Array2<Self::Elem>, Array2<Self::Elem>), LapackError>;
}
Expand description

QR decomposition trait

Required Associated Types§

Required Methods§

Source

fn qr(&self) -> Result<(Array2<Self::Elem>, Array2<Self::Elem>), LapackError>

Implementors§