rusfun/lib.rs
1#![allow(non_snake_case)]
2
3///Includes the Minimizer to optimize parameters of a model using the LM algorithm
4pub mod curve_fit;
5
6/// A module to handle a function with its directive, domain and parameters
7pub mod func1d;
8
9/// Size Distribution functions, for now only Gaussian
10pub mod size_distribution;
11
12/// Standard functions such as linear, parabola, exponential,... using ndarray
13pub mod standard;
14
15/// Helper Functions such as the LU decomposition and interface functions
16pub mod utils;
17
18/// Interface module to enable the call of Rust functions using WASM
19pub mod wasm;