Function dfmul21_

Source
pub fn dfmul21_<T>(a: &ArrayView2<'_, T>, b: &ArrayView1<'_, f64>) -> Array1<T>
where for<'a> &'a f64: Mul<&'a T, Output = T>, T: Sum,
Expand description

Matrix multiplication of a 2d-array with a 1d-array.

The LHS is generic and the RHS contains f64s.