Function dfmul22_

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

Matrix multiplication of two 2d-arrays.

The LHS is generic and the RHS contains f64s.