can matlab find ilaplace
Mostrar comentarios más antiguos
F1=ilaplace(exp(-y*sqrt(s+a))/s);
pretty(F1)
Respuesta aceptada
Más respuestas (1)
TADA
el 28 de Abr. de 2019
Try that:
syms s;
F = exp(-y*sqrt(s+a))/s;
F1 = ilaplace(F);
pretty(F1);
I don't know what a and y are in your case, I assumed constants, but you might need to declare them as symbolic variables as well...
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!