![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176927/image.bmp)
How Fourier Synthesis is performed using Matlab ?
19 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have read about Fourier Synthesis
http://whatis.techtarget.com/definition/Fourier-synthesisFourier-synthesis I want to clear my concept about Fourier Synthesis using Matlab .But don't know how to do this.
So can anybody show me how Fourier Synthesis is performed using Matlab?
0 commentaires
Réponses (2)
Youssef Khmou
le 18 Mai 2015
Modifié(e) : Youssef Khmou
le 18 Mai 2015
Fourier synthesis is simple application of coefficients summation either numerically or symbolically, Fourier decomposition requires certain conditions of the input function, you can start with a simple example which is an approximation of a square wave of 2 Hz, using 11 terms :
Fs=150;
t=0:1/Fs:4-1/Fs;
f=2;
x=square(2*pi*f*t);
figure;
plot(t,x);
axis([0 1 -2 2]);
% Approximation with Fourier decomposition
y=0;
N=11;
for r=1:2:N
y=y+sin(2*pi*f*t*r)/r;
end
hold on;
plot(t,y,'r');
xlabel('t');
ylabel('magnitude');
hold off;
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176927/image.bmp)
1 commentaire
Image Analyst
le 18 Mai 2015
There is nothing at that link. I don't know what Fourier Synthesis might be synthesizing. I don't think computing the Fourier spectrum of a signal or image is called "synthesizing", at least not by anyone I know, so I'm not really sure. You can synthesize things though, such as the attached demo where I synthesize clouds by manipulating the Fourier Spectrum.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176926/image.jpeg)
4 commentaires
Voir également
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!