Plot the magnitude and argument of the Fourier transformed function in frequency domain.
1 回表示 (過去 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?
0 件のコメント
回答 (1 件)
Sindhu Karri
2021 年 3 月 9 日
Hope below discussion link helps you
Refer to below link for alternate method of analysis
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!