- Response frequencies, returned as a row vector of frequency points. Frequency values are in radians per TimeUnit, where TimeUnit is the value of the TimeUnit property of sys.
How to get frequency resolution from bode plot or transfer function?
5 ビュー (過去 30 日間)
古いコメントを表示
I want to know the frequency resolution from bode plot I estimate by using system identification toolbox. But how?
0 件のコメント
採用された回答
Star Strider
2016 年 7 月 19 日
You have to ask it to return them as outputs:
[mag,phase,wout] = bode(sys)
In this example, ‘wout’ are, from the documentation:
2 件のコメント
Star Strider
2016 年 7 月 19 日
If you use a different syntax, the frequencies can be a vector argument (here ‘w’), giving the magnitude and phase as outputs:
[mag,phase] = bode(sys,w);
The frequency values are in radians per TimeUnit.
See the documentation for bode for details.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Analyze Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!