Scilab 5.3.0
      
      - Manuel Scilab
- Algèbre Lineaire
- bdiag
- chfact
- chol
- chsolve
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- expm
- fullrf
- fullrfk
- givens
- glever
- gspec
- hess
- householder
- inv
- kernel
- linsolve
- lu
- lyap
- nlev
- orth
- pbig
- pinv
- polar
- proj
- qr
- range
- rank
- rcond
- rowcomp
- spec
- sqroot
- squeeze
- sva
- svd
- trace
- aff2ab
- balanc
- classmarkov
- eigenmarkov
- ereduc
- fstair
- genmarkov
- gschur
- im_inv
- kroneck
- lsq
- pencan
- penlaur
- projspec
- psmall
- quaskro
- randpencil
- rankqr
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- sylv
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
expm
exponentielle de matrice
Séquence d'appel
expm(X)
Paramètres
- X
- matrice carrée réelle ou complexe 
Description
Pour X une matrice carrée expm(X) est la matrice
expm(X) = I + X + X^2 /2 + ...
Le calcul fait appel à une 
    bloc-diagonalisation préliminaire de X suivie d'une approximation 
    de Padé sur chaque bloc.
Exemples
X=[1 2;3 4] expm(X) logm(expm(X))
| << det | Algèbre Lineaire | fullrf >> |