how to reduce inverse laplace transforms

2 views (last 30 days)
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

Accepted Answer

Star Strider
Star Strider on 4 May 2020
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)
.

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!