Plot the magnitude and argument of the Fourier transformed function in frequency domain.

2 次查看(过去 30 天)
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?

回答(1 个)

Sindhu Karri
Sindhu Karri 2021-3-9

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by