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 CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by