horseshoe/horseshoe.rs
1//! A Rust Language infinitesimal calculus crate
2//!
3//! This library has got only numerical differentiation and
4//! integration, more sources coming soon.
5//!
6//! # Examples
7//!
8//! Integrate a function between an upper and lower bound
9//! (complex numbers are also valid).
10//!
11//! Intg::numint(0.5, 1.5, &my_function_name)
12//!
13//! Derivate a function at a real or complex point.
14//!
15//! Diff::numder(0.5, &my_function_name)
16
17mod numder;
18mod numint;
19
20pub use numder::Diff;
21pub use numint::Intg;