필터 지우기
필터 지우기

inverse laplace of s certain function

조회 수: 4 (최근 30일)
Marwan Malaeb
Marwan Malaeb 2017년 12월 1일
댓글: Star Strider 2017년 12월 1일
hello. I am trying to find the inverse laplace of a function such as exp(-3s)^2/(s-4) which I know the answer will have a unit step which is the Heaviside but unfortunately it is outputting me the same what I typed;ilaplace(f).Any ideas how to get the answer?

채택된 답변

Star Strider
Star Strider 2017년 12월 1일
It works for me in R2017b:
syms s t
F = exp(-3*s)^2/(s-4);
f = ilaplace(F,s,t)
f =
heaviside(t - 6)*exp(4*t - 24)
  댓글 수: 4
Marwan Malaeb
Marwan Malaeb 2017년 12월 1일
Try this please (1-exp(3s))^2/(s-4)
Star Strider
Star Strider 2017년 12월 1일
I get:
f =
exp(4*t) - 2*ilaplace(exp(3*s)/(s - 4), s, t) + ilaplace(exp(6*s)/(s - 4), s, t)
FWIW, WolframAlpha (link) can’t invert it either (as: invlaplace( (1-exp(3*s))^2/(s-4) )).

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by