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

mod numder;
mod numint;

pub use numder::Diff;
pub use numint::Intg;