Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.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ヘルプ >> Linear Algebra > State-Space Matrices > nlev

nlev

Leverrierのアルゴリズム

呼び出し手順

[num,den]=nlev(A,z [,rmax])

引数

A

実数正方行列

z

文字列

rmax

オプションのパラメータ (bdiag参照)

説明

[num,den]=nlev(A,z [,rmax]) は, (z*eye()-A)^(-1)を計算します.

計算の際には,Aのブロック対角化の後に Leverrierアルゴリズムを各ブロックに適用します.

このアルゴリズムは通常の Leverrierアルゴリズム より優れていますが,まだ完全ではありません!

A=rand(3,3);x=poly(0,'x');
[NUM,den]=nlev(A,'x')
clean(den-poly(A,'x'))
clean(NUM/den-inv(x*eye()-A))

参照

  • coff — レゾルベント (余因子法)
  • coffg — 多項式行列の逆
  • glever — 行列ペンシルの逆
  • ss2tf — 状態空間から伝達関数への変換
Report an issue
<< coff State-Space Matrices Subspaces >>

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 14 15:10:28 CET 2017