Trait lax::qr::HouseholderWorkImpl

source ·
pub trait HouseholderWorkImpl: Sized {
    type Elem: Scalar;

    // Required methods
    fn new(l: MatrixLayout) -> Result<Self>;
    fn calc(&mut self, a: &mut [Self::Elem]) -> Result<&[Self::Elem]>;
    fn eval(self, a: &mut [Self::Elem]) -> Result<Vec<Self::Elem>>;
}

Required Associated Types§

source

type Elem: Scalar

Required Methods§

source

fn new(l: MatrixLayout) -> Result<Self>

source

fn calc(&mut self, a: &mut [Self::Elem]) -> Result<&[Self::Elem]>

source

fn eval(self, a: &mut [Self::Elem]) -> Result<Vec<Self::Elem>>

Object Safety§

This trait is not object safe.

Implementors§