Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - 日本語


trfmod

極/ゼロ表示

呼び出し手順

[hm]=trfmod(h [,job])

説明

SISO伝達関数hの極/ゼロ構造を可視化します.

job='p'

多項式の可視化 (デフォルト)

job='f'

固有周波数およびダンピングの可視化

hの対話的な簡単化. trfmod は ダイアログウインドウを開きます.

// 伝達関数を使用
s=poly(0,'s');
gs=syslin('c',1/(s+1));
trfmod(gs)

// 状態空間行列を使用
A=diag([1,2,3]);
B=[1;1;1];
C=[2,2,2];
sys=syslin('c',A,B,C);
trfmod(sys)

参照

  • poly — Polynomial definition from given roots or coefficients, or characteristic to a square matrix.
  • simp — 有理数の簡単化
Report an issue
<< tf2zp Linear System Representation zp2ss >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon May 22 12:43:10 CEST 2023