How the calculate laplace x(t) = (exp^-at)*u(t) matlab?
9 次查看(过去 30 天)
显示 更早的评论
How the calculate laplace transform on matlab?
x(t) = (exp^-at)*u(t)
0 个评论
采纳的回答
Mouhamed Niasse
2021-6-15
编辑:Mouhamed Niasse
2021-6-15
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)
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!