pub fn mul_mat_vec<E, A, B, R, const ROWS: usize>(r: &mut R, a: &A, b: &B)where
E: NdFloat,
R: VectorIterMut<E, ROWS>,
A: Indexable<Index = Ix2> + IndexingRef<Scalar = E>,
B: VectorIter<E, ROWS>,Expand description
Multiplies vector by a matrix.