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 >> Polynomials > ldiv

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 numer >>

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