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

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 help >> CACSD > svplot

svplot

特異値シグマプロット

呼び出し手順

[SVM]=svplot(sl,[w])

パラメータ

sl

syslin リスト (連続, 離散またはサンプル値システム)

w

実数ベクトル (オプションのパラメータ)

説明

システム sl=(A,B,C,D)の伝達関数行列の特異値を計算します:

G(jw) = C(jw*I-A)B^-1+D
or
G(exp(jw)) = C(exp(jw)*I-A)B^-1+D
or
G(exp(jwT)) = C(exp(jw*T)*I-A)B^-1+D

は,wで指定された周波数範囲で評価されます. (Tはサンプリング周期, T=sl('dt') はサンプル値システムです)

sl は, 状態空間形式のシステム [A,B,C,D]を表す syslin リストです. slは連続または離散時間またはサンプル値システムとすることができます.

出力行列 SVMi番目の列には, i番目の周波数w(i)に関する G の特異値が含まれます.

SVM = svplot(sl)

は以下と等価です

SVM = svplot(sl,logspace(-3,3))  ()
SVM = svplot(sl,logspace(-3,%pi)) ()

x=logspace(-3,3);
y=svplot(ssrand(2,2,4),x);
clf();plot2d1("oln",x',20*log(y')/log(10));
xgrid(12)
xtitle("Singular values plot","(Rd/sec)", "Db");

作者

F.D; ;

<< stabil CACSD sysfact >>

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:
Thu May 12 11:45:53 CEST 2011