how to plot impulse function's laplace transform?
显示 更早的评论
t=-1:0.001:1; a=1; syms t laplace(t) ezplot(t,[0,1])
what changes we have to made this to get impulse functions lapalce transform ?
回答(1 个)
Star Strider
2018-10-6
The Laplace transform of the impulse function is 1.
A plot of it would be a straight, horizontal line at 1.
syms t s
d = laplace(dirac(t), t, s)
ezplot(d,[0,1])
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!