multicalc 0.8.0

Calculus, autodiff, nonlinear least squares, and Lie groups in pure no_std Rust: the same math from 64-bit servers to bare-metal microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)]
mod approximation;
mod discretization;
mod gaussian_tables;
mod linear_algebra;
mod numerical_derivative;
mod numerical_integration;
mod ode;
mod optimization;
mod root_finding;
mod scalar;
mod spatial;
mod utils;
mod vector_field;