離散化モデルの周波数応答(ボード線図)を表示する方法
21 views (last 30 days)
Show older comments
MatLab Simulinkでシンプルな離散化モデルを作成し、
その周波数応答のボード線図を表示する方法を教えてください。
0 Comments
Accepted Answer
Shoumei
on 21 Feb 2019
Simulinkモデルの特性を取得してボード線図を表示ということでよろしいでしょうか?
まず、Simulinkモデルを図のようにInport/Outportを接続して作成します。
次にMATLABで以下の様にコードを実行します。
Ts = 1/1000 % Tsはサンプル時間
[num,den] = dlinmod(gcs, Ts) % gcsでカレントのシステムを取得
sys = tf(num,den, Ts)
bode(sys) % ボード線図表示
各関数の機能はヘルプでご確認ください。
More Answers (0)
See Also
Categories
Find more on Time-Domain Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!