can matlab find ilaplace

1 回表示 (過去 30 日間)
MINATI
MINATI 2019 年 4 月 28 日
コメント済み: MINATI 2019 年 4 月 29 日
F1=ilaplace(exp(-y*sqrt(s+a))/s);
pretty(F1)

採用された回答

Walter Roberson
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 件のコメント
MINATI
MINATI 2019 年 4 月 29 日
Ok Walter let me check
Any way thanks for replying

サインインしてコメントする。

その他の回答 (1 件)

TADA
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
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
TADA
TADA 2019 年 4 月 28 日
From what I can see, there seems to be a general difficulty with exponents

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by