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

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Elementary Functions > signalprocessing > trfmod

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 — 多項式を定義する
  • simp — 有理数の簡単化
Report an issue
<< sysdiag signalprocessing symbolic >>

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:
Wed Apr 01 10:25:00 CEST 2015