how to plot impulse function's laplace transform?
Show older comments
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 ?
Answers (1)
Star Strider
on 6 Oct 2018
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])
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!