Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.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 > invr

invr

(有理) 行列の逆

呼び出し手順

F = invr(H)

パラメータ

H

多項式または有理行列

F

有理行列

説明

invr はLeverrierのアルゴリズムにより H-1を計算します (関数コード参照).

s = %s;
H = [s, s*s+2 ; 1-s, 1+s], iH = invr(H), H * iH

[Num,den] = coffg(H); Num/den
H = [1/s, (s+1) ; 1/(s+2), (s+3)/s]; invr(H)
--> H = [s, s*s+2 ; 1-s, 1+s], iH = invr(H), H * iH
 H  =
  s     2 +s²
  1 -s  1 +s

 iH  =
      1 +s       -2 -s²
   ----------  ----------
   -2 +3s +s³  -2 +3s +s³

     -1 +s         s
   ----------  ----------
   -2 +3s +s³  -2 +3s +s³

 ans  =
   1  0
   -  -
   1  1

   0  1
   -  -
   1  1

--> [Num,den] = coffg(H); Num / den
 ans  =
      1 +s       -2 -s²
   ----------  ----------
   -2 +3s +s³  -2 +3s +s³

     -1 +s         s
   ----------  ----------
   -2 +3s +s³  -2 +3s +s³

参照

  • inv — 逆行列
  • glever — 行列ペンシルの逆
  • coffg — 多項式行列の逆
Report an issue
<< inv_coeff Polynomials lcmdiag >>

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 Jan 03 14:37:49 CET 2022