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

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 help >> Linear Algebra > nlev

nlev

Leverrierのアルゴリズム

呼び出し手順

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

パラメータ

A

実数正方行列

z

文字列

rmax

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

説明

[num,den]=nlev(A,z [,rmax]) は, Aのブロック対角化の後に Leverrierアルゴリズムを各ブロックに適用することにより (z*eye()-A)^(-1)を計算します.

このアルゴリズムは通常の 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 — 状態空間から伝達関数への変換

作者

F. Delebecque., S. Steer INRIA;

<< lyap Linear Algebra orth >>

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:
Wed Oct 05 12:12:40 CEST 2011