Skip to main content

MatVec

Trait MatVec 

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

Matrix-vector multiplication and transformations

Required Methods§

Source

fn matvec<'a, La, Lx>( &self, a: &'a Slice<T, (D0, D1), La>, x: &'a Slice<T, (D1,), Lx>, ) -> impl MatVecBuilder<'a, T, La, Lx, D0, D1>
where La: Layout, Lx: Layout,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, D0: Dim, D1: Dim> MatVec<T, D0, D1> for Naive
where T: ComplexFloat,