Owning Class: linalgebra
Requires: MathScript RT Module
c = expmx_pade(a)
Legacy Name: expm1
Computes the matrix exponential using the Pade approximation. National Instruments recommends that you use the expmx function instead.
| Name | Description |
|---|---|
| a | Specifies a square matrix. |
| Name | Description |
|---|---|
| c | Returns the matrix exponential, using the Pade approximation, of a. c is a square matrix. |
C = diag([1, 0, -1])
D = expmx_pade(C)
E = expmx(C)
D-E