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
des2tf
記述子から伝達関数への変換
呼び出し手順
[S]=des2tf(sl) [Bfs,Bis,chis]=des2tf(sl)
パラメータ
- sl
リスト (記述子形式の線形システム)
- Bfs, Bis
多項式行列
- chis
多項式
- S
有理行列
説明
記述子形式の線形システムSl=list('des',A,B,C,D,E)
を指定すると,
des2tf
は sl
を
その伝達関数表現に変換します:
S=C*(s*E-A)^(-1)*B+D
引数3個でコールされた場合, des2tf
は,
2つの多項式行列
Bfs
および Bis
と
次のような多項式chis
を返します:
S=Bfs/chis - Bis
chis
は (s*E-A)
の行列式
(xcative定数に一致)です;
例
参照
Report an issue | ||
<< des2ss | Linear System Representation | frep2tf >> |