Scilab 5.3.0
- Scilab Online Help
- Elementary Functions
- Discrete mathematics
- Floating point
- Integer representation
- Trigonometry
- abs
- amell
- and
- &
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- cumprod
- cumsum
- delip
- diag
- diff
- dsearch
- exp
- eye
- flipdim
- gsort
- imag
- imult
- ind2sub
- intersect
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- kron
- lex_sort
- linspace
- log
- log10
- log1p
- log2
- logm
- logspace
- lstsize
- max
- maxi
- meshgrid
- min
- mini
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- sort
- sqrt
- sqrtm
- squarewave
- ssrand
- sub2ind
- sum
- sysconv
- sysdiag
- syslin
- toeplitz
- trfmod
- trianfml
- tril
- trisolve
- triu
- typeof
- union
- unique
- vectorfind
- zeros
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
sysconv
システム変換
呼び出し手順
[s1,s2]=sysconv(s1,s2)
パラメータ
- s1,s2
リスト (線形システム
syslin
)
説明
s1
および s2
を
システムの相互接続処理を行うために共通の表現に変換します.
変換規則は以下の表で指定されています.
- "c"
連続時間システム
- "d"
離散時間システム
- n
サンプル周期nのサンプル化システム
- []
未定義の時間領域を有するシステム. 混合システムの場合,
s1
およびs2
は 状態空間表現に変換されます.
s1\s2 | "c" | "d" | n2 | [] | --------------------------------------------------------------- "c" | nothing |uncompatible | c2e(s1,n2) | c(s2) | --------------------------------------------------------------- "d" |uncompatible| nothing | e(s1,n2) | d(s2) | --------------------------------------------------------------- n1 | c2e(s2,n1) | e(s2,n1) | n1<>n2 uncomp | e(s2,n1) | | | | n1=n2 nothing | | --------------------------------------------------------------- [] | c(s1) | d(s1) | e(s1,n2) | nothing | ---------------------------------------------------------------
以下のような意味があります:
- n1,n2
サンプル周期
- c2e(s,n)
the continuous-time system s is transformed into a sampled system with sampling period n.
- c(s)
連続システムに変換 (時間領域は
"c"
)- d(s)
離散システムに変換 (時間領域は
"d"
)- e(s,n)
周期
n
のサンプル化システムに変換
<< sum | Elementary Functions | sysdiag >> |