can matlab find ilaplace
1 次查看(过去 30 天)
显示 更早的评论
F1=ilaplace(exp(-y*sqrt(s+a))/s);
pretty(F1)
0 个评论
采纳的回答
Walter Roberson
2019-4-28
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
更多回答(1 个)
TADA
2019-4-28
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...
3 个评论
TADA
2019-4-28
Now I see it doesn't resolve...
I think some functions cannot be resolved using ilaplace but I'm not an expert
My apologies
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!