Plotting inverse laplace w.r.t.

조회 수: 4 (최근 30일)
Yash Kulkarni
Yash Kulkarni 2019년 6월 21일
댓글: Vishnu Vardhan 2019년 6월 21일
How can I plot inverse laplace of a fucntion which contains exponential and hyperbolic functions on Matlab? like
(0.2696)/(s-0.1384*(s^1)*((exp(1.2468*s)+exp(-1.2468*s))/((exp(1.2468*s)-exp(-1.2468*s)))))

답변 (1개)

Vishnu Vardhan
Vishnu Vardhan 2019년 6월 21일
Hi Yash
You can use ilaplace function to compute the inverse laplace of H as shown below.
h=matlabFunction(ilaplace(H));
t=1:0.01:100;
plot(t,h(t))
  댓글 수: 2
Yash Kulkarni
Yash Kulkarni 2019년 6월 21일
Hi Vishnu,
ilaplace wroks only for simple functions. In this case it throws back to me the orginal function.
Vishnu Vardhan
Vishnu Vardhan 2019년 6월 21일
From the documentation page it looks like the inputs can be symbolic expression | symbolic function | symbolic vector | symbolic matrix and also given that if it cannot compute the inverse then it returns an unevaluated call to ilaplace.Hence you are observing that results.

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

카테고리

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