Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda do Scilab >> CACSD > Linear System Representation > ss2zp

ss2zp

SIMO state space system to zero pole gain representation

Syntax

[z,p,k]=ss2zp(S)

Arguments

S

a single input linear system in state space representation.

z

a matrix, the ith column contains the transmission zeros relative to the ith output.

p

a column vector, the poles of the system

k

a column vector, the ith element contains the gain relative to the ith output.

Description

Converts a SIMO state space system into zero pole gain representation.

The zeros and gain are computed using the upper triangular Kronecker form (see kroneck) of the matrix pencil

Examples

a=[ 0.9, 0,   -4.2;
    0.2, 0.1,  0.6;
    6.4, 0.1,  -4];

b=[-0.1;0;-0.1];
c=[2,0,-2;0,-1,3];
d=[2;0];
S=syslin('c',a,b,c,d);
[z,p,k]=ss2zp(S)

h=ss2tf(S(1,1))
roots(h.num)

References

A. Emami-Naeini, P. Van Dooren "CComputation of zeros of linear multivariable systems" Automatica. Vol. 18, 1982, p. 415

See Also

  • trzeros — transmission zeros and normal rank
  • systmat — matriz sistema
  • kroneck — forma de Kronecker de feixe de matrizes
  • zp2ss — Zero pole gain to state space

History

VersionDescription
6.0

Function added.

Report an issue
<< ss2tf Linear System Representation ssprint >>

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 Feb 12 19:58:36 CET 2018