can matlab find ilaplace
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MINATI
el 28 de Abr. de 2019
Comentada: MINATI
el 29 de Abr. de 2019
F1=ilaplace(exp(-y*sqrt(s+a))/s);
pretty(F1)
0 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Abr. de 2019
MATLAB is not able to find the inverse laplace transform of that.
Maple can find it in terms of an integral, when the assumption that y > 0 is added.
Mathematica can find it in terms of erf and erfc
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...
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!