Using MATLAB Symbolic Math Toolbox find the Inverse Laplace
Using MATLAB Symbolic Math Toolbox find the Inverse Laplace of (Looking to see code so that I can figure out several more).
Solution
syms s t;
 F = ((2*(s^2))+(7*s)+4)/((s+1)*((s+2)^2));
 ilaplace(F, s, t)
>> Inverse_Laplace
 
 ans =
 
 3*exp(-2*t) - exp(-t) + 2*t*exp(-2*t)
 
 >>

