Hi,
I want to calculate the multiplication of two short (16bit) number fast, as indicated by codes listed below,
short a[1000];
short b[1000];
short c[1000];
for (i=0;i<1000;i++)
c[i]=a[i]*b[i];
there exists dsplib function DSP_mul32, but the two number should be int (32bit), and the result is also int. If someone has solution? Thanks.