Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - Français

Change language to:
English - 日本語 - 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

Aide Scilab >> CACSD > ss2des

ss2des

(polynomial) state-space to descriptor form

Calling Sequence

S=ss2des(Sl)
S=ss2des(Sl,flag)

Arguments

Sl

syslin list: proper or improper linear system.

flag

character string "withD"

S

list

Description

Given the linear system in state-space representation Sl (syslin list), with a D matrix which is either polynomial or constant, but not zero ss2des returns a descriptor system as list('des',A,B,C,0,E) such that:

Sl=C*(s*E-A)^(-1)*B

If the flag "withD" is given, S=list('des',A,B,C,D,E) with a D matrix of maximal rank.

Examples

s=poly(0,'s');
G=[1/(s+1),s;1+s^2,3*s^3];Sl=tf2ss(G);
S=ss2des(Sl)
S1=ss2des(Sl,"withD")
Des=des2ss(S);Des(5)=clean(Des(5))
Des1=des2ss(S1)

See Also

  • pol2des — conversion matrice de polynômes vers forme descripteur
  • tf2des — transfer function to descriptor
  • des2ss — descriptor to state-space

Authors

F. D.; ;

<< specfact CACSD ss2ss >>

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:44:56 CEST 2011