Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - 日本語

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

多項式行列の長除算

呼び出し手順

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

パラメータ

n,d

実数多項式行列

k

整数

説明

x=ldiv(n,d,k) は, ndによる長除算の 最初のk個の係数を出力します. すなわち,有理行列[nij(z)/dij(z)]の無限大近傍での テイラー展開を出力します.

nij/dijの展開の係数は x((i-1)*n+k,j) k=1:nに保存されます

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)

参照

  • arl2 — L2伝達関数近似による SISO モデル実現
  • markp2ss — マルコフパラメータを状態空間に変換
  • pfss — 部分分数分解
  • pdiv — 多項式の除算
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:
Tue Feb 25 08:53:20 CET 2020