JuliaPy / SymPy.jl

Julia interface to SymPy via PyCall
http://juliapy.github.io/SymPy.jl/
MIT License
268 stars 62 forks source link

inverse laplace transform function ? #471

Closed liushang0322 closed 10 months ago

liushang0322 commented 2 years ago

Please how can I call the inverse_laplace_transform function through SymPy.jl

jverzani commented 2 years ago

Does this do what you want?

julia> using SymPy

julia> @syms a::positive, s, t
(a, s, t)

julia> sympy.inverse_laplace_transform(exp(-a*s/s), s, t)
 -a     
ℯ  ⋅δ(t)