Hi every one.
I'm using TMS320C6455 @ 1Ghz. DSP chip and CCS V3.3
I need to calculate exponential (e.g in matlab exp() ) and power ( e.g x^2 ) many times,
but calculating these takes too long..
*(*ppDiffusivity_scanline_increase + index) = (exp(-pow(abs(*(*ppGrad_Scanline_2 + index))/SCANLINE_THRESHOLD,2)));
this block takes 324169075 cycles (320ms)... : (
is there a faster way to calculate exponential, power and log??
Thanks!!
this attach my code where using 'exp' , 'pow' and 'log' function