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
sysfact
システム分解
呼び出し手順
[S,Series]=sysfact(Sys,Gain,flag)
パラメータ
- Sys
行列
[A,B,C,D]
を含むsyslin
リスト.- Gain
実数行列
- flag
文字列
'post'
または'pre'
- S
syslin
リスト- Series
syslin
リスト
説明
flag
が 'post'
に等しい場合,
sysfact
は,S
に
ABCD行列形式の線形システム (A+B*Gain, B , Gain, I)
および直列システム Sys*S
の最小実現である Series
を返します.
flag
が 'pre'
に等しい場合,
sysfact
は線形システム
(A+Gain*C, Gain , C, I)
および
直列システム S*Sys
の最小実現である Series
を返します.
例
Report an issue | ||
<< specfact | Linear System Factorization | Linear System Representation >> |