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

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 manual >> Elementary Functions > sysconv

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のサンプル化システムに変換

s1=ssrand(1,1,2);
s2=ss2tf(s1);
[s1,s2]=sysconv(s1,s2);
<< sum Elementary Functions sysdiag >>

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 Jan 26 16:25:04 CET 2011