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§
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>>
Object Safety§
This trait is not object safe.