I cannot find the inverse laplace
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Saad Rana
el 14 de Abr. de 2020
Comentada: Saad Rana
el 14 de Abr. de 2020
syms s:
l=1/s*(s+2)*(s+3);
ilaplace(l)
for some reason there is an error in this code and I cannot find inverse laplace of the equation.
I don't know what is wrong with the code
NEED HELP!!
0 comentarios
Respuesta aceptada
Walter Roberson
el 14 de Abr. de 2020
syms s
l=1/s*(s+2)*(s+3);
ilaplace(l)
You had colon at the end of s, not semi-colon.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!