Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - 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 >> Polinômios > ldiv

ldiv

divisão longa entre matrizes de polinômios

Seqüência de Chamamento

[x]=ldiv(n,d,k)

Parâmetros

n,d

duas matrizes de polinômios reais

k

inteiro

Descrição

x=ldiv(n,d,k) fornece os k primeiros coeficientes da divisão longa de n por d i.e. the a expansão de Taylor da matriz de razões de polinômios [nij(z)/dij(z)] aproximando-se do infinito.

Os coeficientes de expansão de nij/dij são armazenados em x((i-1)*n+k,j) k=1:n

Exemplos

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)

Ver Também

Report an issue
<< lcmdiag Polinômios 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:
Thu Feb 14 15:00:42 CET 2019