rusty_math 0.7.0

This is a Rust library for mathematical, statistical and machine learning operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! rusty_math is a collection of mathematical functions implemented in Rust
//! Exampe usage:
//! ```
//! use rusty_math::{gcd, lcm, factorial, isprime, primes, permutation, combination};
//! let result = numbers::gcd(12, 15);
//! ```
//!

pub mod calculus;
pub mod distributions;
pub mod equations;
pub mod linear;
pub mod metrics;
pub mod naive_bayes;
pub mod numbers;
pub mod knn;
pub mod clustering;