math_ops/lib.rs
1//! # MathOps
2//!
3//! `MathOps` is a Rust library providing mathematical and statistical operations on vectors.
4//! It supports both `f32` and `f64` types, and includes methods for common statistical measures,
5//! normalization, sorting, and vector arithmetic.
6
7pub mod conversion;
8pub mod normalize;
9pub mod operations;
10pub mod sort;
11pub mod statistics;
12pub mod summary;
13pub mod vector;
14
15// Re-exporting for easy access
16pub use conversion::*;
17pub use normalize::*;
18pub use operations::*;
19pub use sort::*;
20pub use statistics::*;
21pub use summary::*;
22pub use vector::*;