Rust implementation of Inverse Laplace Transform with Concentrated Matrix-Exponential Functions.
Source: https://inverselaplace.org
Usage
Approximate a sine function where $x = 1$ with a maximum of 50 function evaluations.
The Laplace transform of sine is $h*(s) = 1 / (s2 + 1)$.
Implementation details
This crate parses a large list of precomputed parameters from a JSON file and converts them to a Rust file which is internally used. The effect of this is that the build time might be slow, no runtime penalty should be paid though.