Laplace Transform of a Function over a specified interval.

조회 수: 3 (최근 30일)
Khaled Mohamed
Khaled Mohamed 2020년 2월 7일
편집: Walter Roberson 2020년 2월 7일
I want to find the laplace transform of a function. for example cos(t) but with a condition such that 0<t<4.
  댓글 수: 1
Vladimir Sovkov
Vladimir Sovkov 2020년 2월 7일
You mean, you want something like ? Then, just estimate it as the integral, either numerically (function "integral") or symbolically (function "int"). The other way is to define your function as the symbolic piece-wise one (equal to what you want within [0,4] and zero outside) and use the function "laplace".

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 2월 7일
편집: Walter Roberson 2020년 2월 7일
syms t
lowerbound = 0; upperbound = 4;
F = heaviside(t-lowerbound) * heaviside(upperbound-t) * cos(t)
laplace(F)
The boundary conditions might not be exactly what you want so you might need to toss in some dirac()

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by