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

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ヘルプ >> CACSD > Model Transformation > cls2dls

cls2dls

双線形変換

呼び出し手順

[sl1]=cls2dls(sl,T [,fp])

引数

sl,sl1

線形システム (syslin リスト)

T

実数, サンプリング周期

fp

プリワープ周波数 (単位: Hz)

説明

sl=[A,B,C,D] (syslin リスト), 連続時間システム cls2dls は双線形変換s=(2/T)*(z-1)/(z+1) により得られたサンプル値システムを返します.

s=poly(0,'s');z=poly(0,'z');
sl=syslin('c',(s+1)/(s^2-5*s+2));  //連続時間系伝達関数表現
slss=tf2ss(sl);  //状態空間表現に変換
sl1=cls2dls(slss,0.2);  //sl1= cls2dlsの出力
sl1t=ss2tf(sl1) // 伝達関数表現に変換
sl2=horner(sl,(2/0.2)*(z-1)/(z+1))   //sl2 と sl1を比較

参照

  • horner — 多項式/有理数の評価
Report an issue
<< canon Model Transformation colregul >>

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 Jan 03 14:37:49 CET 2022