- w が周波数のベクトルの場合、関数は指定された各周波数で応答を計算します。たとえば、logspace を使用すると、対数的に等間隔な周波数値の行ベクトルを生成できます。ベクトル w には正と負の両方の周波数を含めることができます。
Bode関数を使用したボード線図の戻り値で周波数分解能を高める方法
5 views (last 30 days)
Show older comments
Bode関数を使用した戻り値の分解能を高める方法を知りたいです.
一次遅れ系
1
G(s) = -----------
s + 1
のBode線図の戻り値のもらい方は
Gs = tf([1],[1 1])
[mag,phase,wout] = bode(Gs);
となるのですが,データ行を確認すると55行しかないです.他に適当な伝達関数を指定し
戻り値をもらった場合でも劇的に増えることは確認できないです.
おそらく設定があると思うのですが,細かくする方法を教えていただきたいです.
0 Comments
Accepted Answer
Atsushi Ueno
on 4 Feb 2023
Edited: Atsushi Ueno
on 4 Feb 2023
Gs = tf([1],[1 1]);
[mag,phase,wout] = bode(Gs,logspace(-2,2,999));
size(mag)
More Answers (0)
See Also
Categories
Find more on データの解析 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!