Summary: This module introduces how to use Laplace transform to calculte the matrix exponential.
Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.
You may recall from the
Laplace Transform module that may achieve
The easiest case is the diagonal case, e.g.,
As a second example let us suppose
>> inv(s*eye(2)-A)
ans = [ s/(s^2+1), 1/(s^2+1)]
[-1/(s^2+1), s/(s^2+1)]
>> ilaplace(ans)
ans = [ cos(t), sin(t)]
[-sin(t), cos(t)]
If
>> inv(s*eye(2)-A)
ans = [ 1/s, 1/s^2]
[ 0, 1/s]
>> ilaplace(ans)
ans = [ 1, t]
[ 0, 1]