Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.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ヘルプ >> CACSD > Formal representations and conversions > abcd

abcd

状態空間行列

呼び出しの手順

[A,B,C,D]=abcd(sl)

パラメータ

sl

状態空間表現または伝達関数表現の 線形システム (syslin リスト)

A,B,C,D

適当な次元の実数行列

説明

線形システムSlA,B,C,D 行列を返す.

ユーティリティ関数.伝達関数行列Slの場合、 tf2ssにより状態空間表現に変換される.

行列 A,B,C,Dsyslinリスト Sl2 から 5 までの要素、すなわち、[A,B,C,D] = Sl(2:5)、である.

A=diag([1,2,3]);B=[1;1;1];C=[2,2,2];
sys=syslin('c',A,B,C);
sys("A")
sys("C")
[A1,B1,C1,D1]=abcd(sys);
A1
systf=ss2tf(sys);
[a,b,c,d]=abcd(systf)
spec(a)
c*b-C*B
c*a*b-C*A*B

参照

  • syslin — 線形システムを定義する
  • ssrand — 乱数生成器
Report an issue
<< Formal representations and conversions Formal representations and conversions cont_frm >>

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:
Fri Apr 11 14:18:56 CEST 2014