CMSIS-DSP
Version 1.4.4
CMSIS DSP Software Library
|
A
and B
with length n
, are multiplied element-by-element and then added to obtain dot product. dotProduct = A[0] * B[0] + A[1] * B[1] + ... + A[n-1] * B[n-1]
srcA_buf_f32
points to first input vector srcB_buf_f32
points to second input vector testOutput
stores dot product of the two input vectors.