How the calculate laplace x(t) = (exp^-at)*u(t) matlab?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Furkan Ozkan
am 15 Jun. 2021
Beantwortet: Rahul R
am 11 Okt. 2022
How the calculate laplace transform on matlab?
x(t) = (exp^-at)*u(t)
0 Kommentare
Akzeptierte Antwort
Mouhamed Niasse
am 15 Jun. 2021
Bearbeitet: Mouhamed Niasse
am 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)
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!