Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inverse Laplace transform in R

Tags:

r

time-series

fft

I am trying to do some computations using Laplace transforms in R. I used the continued fractions approach to compute Laplace transform of a birth-death process as described in Abate 1999. But I cannot find a simple numerical routine to compute the inverse Laplace transform (evaluated at 0 in my case). Does anyone have ideas on how to do this in R?

like image 412
user236215 Avatar asked Nov 04 '22 04:11

user236215


1 Answers

Computing inverse Laplace transforms numerically is tricky. I remember seeing some relatively recent results on the ACM. Googling around a bit, I found some Python code implementing one of these algorithms. Maybe you can adapt it to your purposes.

like image 135
Jerry Avatar answered Nov 07 '22 22:11

Jerry