Laplace Transform of a Function over a specified interval.

6 Ansichten (letzte 30 Tage)
I want to find the laplace transform of a function. for example cos(t) but with a condition such that 0<t<4.
  1 Kommentar
Vladimir Sovkov
Vladimir Sovkov am 7 Feb. 2020
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".

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 7 Feb. 2020
Bearbeitet: Walter Roberson am 7 Feb. 2020
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()

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by