how to reduce inverse laplace transforms
2 views (last 30 days)
Show older comments
Jacob Hollister
on 4 May 2020
Commented: Star Strider
on 4 May 2020

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
0 Comments
Accepted Answer
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)
.
2 Comments
More Answers (0)
See Also
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!