How the calculate laplace x(t) = (exp^-at)*u(t) matlab?

9 views (last 30 days)
How the calculate laplace transform on matlab?
x(t) = (exp^-at)*u(t)

Accepted Answer

Mouhamed Niasse
Mouhamed Niasse on 15 Jun 2021
Edited: Mouhamed Niasse on 15 Jun 2021
Hello,
Here is what i achieved. You'll need to re-define your constant "a" and your function u(t).
Hope it helps you understand.
syms t
a=1
u=t
x = exp(-a*t)*u
laplace(x)

More Answers (1)

Rahul R
Rahul R on 11 Oct 2022
syms t a=1 u=t x = exp(-a*t)*u laplace(x)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Products


Release

R2015a

Community Treasure Hunt

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

Start Hunting!