Function fdmul11_

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

Inner product of two 1d-arrays.

The LHS contains f64s and the RHS is generic.