Sum of harmonics

Version 1.0.0.0 (6.71 KB) by Gabriele
Sum of harmonic components through FORTRAN MEX file
1.4K Downloads
Updated 12 Oct 2006

View License

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 (2024). Sum of harmonics (https://www.mathworks.com/matlabcentral/fileexchange/12508-sum-of-harmonics), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R13
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Fortran with MATLAB in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
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