[][src]Function cmsis_dsp::basic::dot_product_q15

pub fn dot_product_q15(src1: &[I1F15], src2: &[I1F15]) -> I34F30

Calculates the dot product of two vectors

The returned value is the sum of src1[i] * src2[i] over all values of i in range.

Panics

This function panics if src1 and src2 do not have the same length.