how to plot impulse function's laplace transform?
Afficher commentaires plus anciens
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 ?
Réponses (1)
Star Strider
le 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])
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!