File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 44
55The source repository is [ https://github.com/jlapeyre/InverseLaplace.jl ] ( https://github.com/jlapeyre/InverseLaplace.jl ) .
66
7+ This package provides three numerical algorithms for numerically inverting Laplace transforms.
8+
79## Contents
810
911``` @contents
Original file line number Diff line number Diff line change @@ -28,17 +28,19 @@ Compute the inverse transform of the transform of `cos` at argument `pi/2`.
2828julia> ft = Talbot(s -> s/(s^2+1), 80);
2929
3030julia> ft(pi/2)
31- 0.0
31+ -3.5366510684573195e-5
3232```
3333
3434Note that given `Float64` input, the precision of the returned value may not be satisfactory.
3535```julia-repl
36- julia> ft(pi/2)
37- -3.5366510684573195e-5
38-
3936julia> Float64(ft(big(pi)/2))
40372.114425886215604e-49
4138```
39+
40+ !!! note
41+ This function uses the fixed Talbot method. It evaluates the Laplace transform
42+ function for complex arguments. The GWR method is, in general, less accurate and
43+ less stable, but does not evaluate the Laplace transform function for complex arguments.
4244"""
4345type Talbot{T<: Base.Callable } <: AbstractILt
4446 LSfunc:: T # Laplace space function
You can’t perform that action at this time.
0 commit comments