Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
bode_asymp
ボード線図の漸近線
呼び出し手順
bode_asymp(sl) bode_asymp(sl, wmin, wmax)
引数
- sl
syslin
リスト (連続時間系のSISOまたはSIMO線形システム) (状態空間または有理型).- wmin, wmax
実スカラー: 周波数領域の下限および上限 (単位: rad/s).
説明
システムsl
の漸近線をプロットします.
オプション引数 wmin
および wmax
(単位:rad/s)
により漸近線をプロットする際に周波数範囲を指定することができます.
警告: 最初の入力引数が実数行列の場合,この関数は適用できません. |
例
s = poly(0, "s"); h = syslin("c", (s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)); clf(); bode(h, 0.01, 100); bode_asymp(h);
s = poly(0, "s"); h1 = syslin("c", (s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)); h2 = syslin("c", (10*(s+3))/(s*(s+2)*(s^2+s+2))); clf(); bode([h1; h2], 0.01, 100, ["h1"; "h2"]); bode_asymp([h1; h2]);
参照
履歴
バージョン | 記述 |
5.5.0 | bode_asymp() 関数が導入されました. |
Report an issue | ||
<< bode | Frequency Domain | calfrq >> |