3 unstable releases

0.2.2 Jan 31, 2024
0.2.0 Sep 20, 2023
0.1.0 Sep 1, 2023

#347 in Math

Download history 32/week @ 2024-01-26 37/week @ 2024-02-02 17/week @ 2024-02-09 8/week @ 2024-02-16 34/week @ 2024-02-23 72/week @ 2024-03-01 8/week @ 2024-03-08 45/week @ 2024-03-29 11/week @ 2024-04-05

56 downloads per month

MPL-2.0 license

7MB
594 lines

Crates.io MIT/Apache docs.rs ci

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 / (s^2 + 1)$.

fn main() {
  let result = iltcme::laplace_inversion(|s| 1.0 / (s.powi(2) + 1.0), 1.0, 50);
  approx::relative_eq!(result, 1.0_f64.sin(), epsilon = 0.001);
}

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.

Generate manually

To regenerate the Rust coefficient files run the following commands in the root:

cargo run -p gen-coefficients -- --input iltcme.json --output src/coefficients.rs

Dependencies