| Symbolic Math Toolbox | Search  Help Desk |
| expm | Examples |
Syntax
expm(A)
Description
expm(A) is the matrix exponential of the symbolic matrix A.
Examples
The statementssyms t; A = [0 1; -1 0]; expm(t*A)return
[ cos(t), sin(t)][ -sin(t), cos(t)]