MatVec

Trait MatVec 

Source
pub trait MatVec<T> {
    // Required method
    fn matvec<'a, La, Lx>(
        &self,
        a: &'a DSlice<T, 2, La>,
        x: &'a DSlice<T, 1, Lx>,
    ) -> impl MatVecBuilder<'a, T, La, Lx>
       where La: Layout,
             Lx: Layout;
}
Expand description

Matrix-vector multiplication and transformations

Required Methods§

Source

fn matvec<'a, La, Lx>( &self, a: &'a DSlice<T, 2, La>, x: &'a DSlice<T, 1, Lx>, ) -> impl MatVecBuilder<'a, T, La, Lx>
where La: Layout, Lx: Layout,

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.

Implementors§

Source§

impl<T> MatVec<T> for Naive
where T: ComplexFloat, i8: Into<T::Real>, T::Real: Into<T>,