MATLAB: How to reduce inverse laplace transforms

inverse laplace transformsMATLAB

When I try to run an inverse laplace tranform of a function (as shown) it outputs the answer in the form shown above. Is there a way to simplify or reduce this fraction? (I have tried both the simplify and reduce functions but they did not work) Thank you

Best Answer

That is as simple as it gets.
If you want decimal fractions, use the vpa function:
syms s t
F = 9787/(10*(s+177/2))
f = ilaplace(F,s,t)
f = vpa(f)
.
Related Question