Sum of harmonics
For several different reasons it could occur that we need to produce a signal from the sum of several harmonic components. In the usual case of Fourier analysis, FFT and IFFT are likely the best choice. However it could happen that:
- The frequencies of the harmonic components are unevenly spaced
- The time vector is unevenly spaced
In such cases we could be in the need of coding the summation directly in Matlab, that is quite slow in performing this tasks.
The provided function is simply a MEX file that performs the signal generation through a compiled FORTRAN code.
Nothing special, but at least I run the generation almost three times faster than in Matlab. Not as good as in the cases where you can use IFFT directly in Matlab, but at least a little bit better than using a "for" loop directly in Matlab.
Cite As
Gabriele (2025). Sum of harmonics (https://www.mathworks.com/matlabcentral/fileexchange/12508-sum-of-harmonics), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0.0 | Better explanation of the fact that the speed is increased with respect to the standard for loop in matlab |