Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Русский

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 > Linear Analysis > Frequency Domain > svplot

svplot

singular-value sigma-plot

Syntax

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

Arguments

sl

syslin list (continuous, discrete or sampled system)

w

real vector (optional parameter)

Description

computes for the system sl=(A,B,C,D) the singular values of its transfer function matrix:

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

evaluated over the frequency range specified by w. (T is the sampling period, T=sl('dt') for sampled systems).

sl is a syslin list representing the system [A,B,C,D] in state-space form. sl can be continuous or discrete time or sampled system.

The i-th column of the output matrix SVM contains the singular values of G for the i-th frequency value w(i).

SVM = svplot(sl)

is equivalent to

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

Examples

x = logspace(-3,3);
y = svplot(ssrand(2,2,4),x);
clf()
plot2d("ln", x, 20*log(y')/log(10))
xgrid(12)
xtitle("Singular values plot","(Rd/sec)", "Db");
Report an issue
<< repfreq Frequency Domain trzeros >>

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:
Mon Jan 03 14:39:54 CET 2022