pub fn multiply_q31(src1: &[I1F31], src2: &[I1F31], dst: &mut [I1F31])Expand description
Multiplies multiple values
This is similar to performing dst[i] = src1[i] * src2[i] for all values of i
in range. This function saturates on overflow.
ยงPanics
This function panics if src1, src2, and dst do not have the same length.