Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.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 System Representation > pol2des

pol2des

polynomial matrix to descriptor form

Syntax

[N,B,C]=pol2des(Ds)

Arguments

Ds

polynomial matrix

N, B, C

three real matrices

Description

Given the polynomial matrix Ds=D_0 +D_1 s +D_2 s^2 +... +D_k s^k, pol2des returns three matrices N, B, C, with N nilpotent such that:

Ds = C (s*N-eye())^-1 B

Examples

s = poly(0,'s');
G = [1, s; 1+s^2, 3*s^3];
[N, B, C] = pol2des(G);
G1 = clean(C*inv(s*N-eye())*B)
G2 = G1.num

See also

  • ss2des — (polynomial) state-space to descriptor form
  • tf2des — transfer function to descriptor
Report an issue
<< pfss Linear System Representation sm2des >>

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 20:08:36 CET 2018