Owning Class: linalgebra
Requires: MathScript RT Module
c = expmx_taylor(a)
Legacy Name: expm2
Computes the matrix exponential using a Taylor series. 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 Taylor series, of a. c is a square matrix. |
C = diag([1, 0, -1])
D = expmx_taylor(C)
E = expmx(C)
D-E