Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


invr

inverts a matrix of polynomials or of rationals

Syntax

F = invr(H)

Arguments

H

polynomial or rational matrix

F

polynomial or rational matrix

Description

invr computes H-1 using Leverrier's algorithm (see function's code).

Examples

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³

See also

  • inv — matrix inverse
  • glever — inverse of matrix pencil
  • coffg — Co-factors of a matrix of polynomials or rationals
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:
Tue Oct 24 14:30:03 CEST 2023