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

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

mod newton_raphson;

pub mod differential_equation;
pub mod integral;
pub mod interpolation;

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