Syntax
expm(A)
Description expm(A) is the matrix exponential of the symbolic matrix A.
A
Examples The statements
syms t; A = [0 1; -1 0]; expm(t*A)
[ cos(t), sin(t)] [ -sin(t), cos(t)]
[ cos(t), sin(t)]
[ -sin(t), cos(t)]