ilaplace returns unexpected answer
Show older comments
I am having trouble understanding MATLAB's unability to find the inverse Laplace of delayed step response ( heaviside()).
For example, notice in the below code, the coefficient of "s" is "-3".
syms t s ;
f3=(exp(-6*s))/(s-4)
F=ilaplace(f3,s,t);
pretty(F);
which returns a fine answer of
heaviside(t - 6) exp(4 t - 24)
But, when I change the coefficient of “s” to “3” ( positive 3), I get the below answer.
/ exp(6 s) \
ilaplace| --------, s, t |
\ s - 4 /
what could be the problem! the hand written answer is heaviside(t + 6) exp(4 t + 24)
Appreicate the help.
Accepted Answer
More Answers (0)
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!