mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Elementary functions (the ones you learn in high school)

pub mod exponential;
pub mod hyperbolic;
pub mod power;
pub mod trigonometry;

pub use self::{
    exponential::Exponential, hyperbolic::Hyperbolic, power::Power, trigonometry::Trigonometry,
};