Fourier transform of sum of sinusoids
5 views (last 30 days)
Show older comments
can i approximate the Fourier Transform of a finite sum of sine, or is there an apprximation of the finite sum of sine. the sommation is sin(w1t) + sin(w2t) + sin(w3t).
0 Comments
Accepted Answer
Paul
on 12 May 2021
The exact Fourier transform can be found as:
syms w1 w2 w3 t w
f(t)=sin(w1*t)+sin(w2*t)+sin(w3*t);
F(w)=fourier(f(t),t,w)
0 Comments
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!