MATLAB: How to Sum a product between 0 to N-1 points.

Extended Symbolic Math Toolboxfftfilterfiriirmacn-pointproductSignal Processing Toolboxsum

How to achieve Multiply and Addition of N discrete points from (0 to N-1) using Matlab. For Example FFT,FIR,IIR Filters,MAC unit

Best Answer

sum(A .* (0:N-1))
Related Question