[][src]Crate horseshoe

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)

Traits

Diff
Intg