LIBML  Version 3.2.4
LIBML DSP Software Library
Functions
tpt_dot_prod_q7xq15.c File Reference
#include "tpt_math.h"
Include dependency graph for tpt_dot_prod_q7xq15.c:

Functions

q31_t tpt_dot_prod_q7xq15 (q7_t *aInDataA, q15_t *aInDataB, uint32_t aCount)
 Dot production of Q7 * Q15 vectors. More...
 

Function Documentation

◆ tpt_dot_prod_q7xq15()

q31_t tpt_dot_prod_q7xq15 ( q7_t aInDataA,
q15_t aInDataB,
uint32_t  aCount 
)

Dot production of Q7 * Q15 vectors.

Dot product of Q7 * Q15 vectors.

Parameters
aInDataAPoints to the q7_t format input vector.
aInDataBPoints to the q15 format input vector.
aCountSize of the vectors.
Returns
q31_t dot product of two input vectors.

y = x1[0] * x2[0] + x1[1] * x2[1] + x1[2] * x2[2] + ..... + x1[size-1] * x2[size-1]