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


ldiv

polynomial matrix long division

Syntax

x = ldiv(n, d, k)

Arguments

n,d

two real polynomial matrices

k

integer

Description

x=ldiv(n,d,k) gives the k first coefficients of the long division of n by d i.e. the Taylor expansion of the rational matrix [nij(z)/dij(z)] near infinity.

Coefficients of expansion of nij/dij are stored in x((i-1)*n+k,j) k=1:n

Examples

wss = ssrand(1,1,3);
[a,b,c,d] = abcd(wss);
wtf = ss2tf(wss);
x1 = ldiv(wtf.num, wtf.den, 5)
x2 = [c*b ; c*a*b ; c*a^2*b ; c*a^3*b ; c*a^4*b]
wssbis = markp2ss(x1',5,1,1);
wtfbis = clean(ss2tf(wssbis))
x3 = ldiv(wtfbis.num, wtfbis.den, 5)

See also

  • arl2 — SISO model realization by L2 transfer approximation
  • markp2ss — Markov parameters to state-space
  • pfss — partial fraction decomposition
  • pdiv — polynomial division
Report an issue
<< lcmdiag Polynomials pdiv >>

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 May 22 12:41:13 CEST 2023