Is it possible to Plot the output of LaplaceTransform with Mathematica?
Obviously when I apply LaplaceTransform to a function I obtain a function of parameter s... but is implicit defined as sigma+j*omega, but I can't see this....(like the following example shown).
LaplaceTransform[Sin[t], t, s]
1/(1 + s^2)
Can I plot this function?
Can I plot the Abs[] of the Laplace transformed function?
I wish obtain a graphic like this
Thx :)




Plot3D[Abs[1/(1 + s^2) /. s -> x + I y], {x, -2, 2}, {y, -2, 2}, PlotRange -> {0, 2}]– Artes May 16 '17 at 12:01