How to plot bode plot from FFT data
32 ビュー (過去 30 日間)
古いコメントを表示
Hi, I would like to get bode plot from FFT data. How do I convert the data obtained(complex values) so that it can be used by the 'bode' function in matlab.
Thanking you.
0 件のコメント
回答 (1 件)
Arkadiy Turevskiy
2013 年 9 月 30 日
here is example code from doc page.
% generate a frequency vector and response data
freq = logspace(1,2);
resp = .05*(freq).*exp(i*2*freq);
% Create a FRD model
sys = frd(resp,freq);
Now simply do
bode(sys)
2 件のコメント
Arkadiy Turevskiy
2013 年 10 月 1 日
resp=[2+2j,1-3j,4, 5+4j];
freq= % enter the frequency values at which the corresponding fft
% values are obtained
sys=frd*resp,freq);
参考
カテゴリ
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!