Cosine/Sine polynomial summation: Ordinary sum vs. Clenshaw summation

4 views (last 30 days)
Hi all,
I'm interested in knowing whether it is advantageous, specifically in matlab, to sum a cosine/sine polynomial using the clenshaw algorithm or not:
f(x) = sum_k=0:N a_k * cos kx or f(x) = sum_k=1:N a_k * sin kx
x can as well be a single value or an array of (arbitrarily chosen) values.
Many references advice to use special algorithms such as clenshaw summation in stead of simply summing harmonics of sines/cosines, however when implementing both, I don't see much difference both in computation time as accuracy. Tested it for max(N) = 60 at this moment.
Thanks in advance,
Bart

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!