Plot the magnitude and argument of the Fourier transformed function in frequency domain.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am not sure how to plot the magnitude and argument of the code I have so far:
>> t=0:20;
>> n=1;
>> sig=1;
>> f=exp((-(t-n).^2)/2).*sin(n.*t);
>> plot(t,f);
>> tn=length(t);
>> fft(f,tn);
>> z=fft(f,tn);
>> abs(z);
>> angle(z);
How should I plot this?
0 Kommentare
Antworten (1)
Sindhu Karri
am 9 Mär. 2021
Hope below discussion link helps you
Refer to below link for alternate method of analysis
0 Kommentare
Siehe auch
Kategorien
Mehr zu Fourier Analysis and Filtering finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!