ilaplace returns unexpected answer
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!