Skip to main content

add_q7

Function add_q7 

Source
pub fn add_q7(src1: &[I1F7], src2: &[I1F7], dst: &mut [I1F7])
Expand description

Adds multiple values

This is functionally equivalent to performing dst[i] = src1[i] + src2[i] for all values of i in range.

ยงPanics

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