1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Analysis
//!
//! Fore more information: <br>
//! <a href="https://en.wikipedia.org/wiki/Analysis">https://en.wikipedia.org/wiki/Analysis</a>

//pub mod interpolation;
#[macro_use]
mod function;
mod jacobian;
mod hessian;

mod newton_raphson;

pub mod differential_equation;

pub use newton_raphson::NewtonRaphson;
pub use function::Function;
pub use jacobian::Jacobian;
pub use hessian::Hessian;