laplace.spad line 1 [edit on github]
This package computes the forward Laplace Transform.
laplace(f, t, s)
returns the Laplace transform of f(t)
using s
as the new variable. This is integral(exp(-s*t)*f(t), t = 0..%plusInfinity)
. Returns the formal object laplace(f, t, s)
if it cannot compute the transform.