Expand description
§MathOps
MathOps is a Rust library providing mathematical and statistical operations on vectors.
It supports both f32 and f64 types, and includes methods for common statistical measures,
normalization, sorting, and vector arithmetic.
Re-exports§
pub use conversion::*;pub use normalize::*;pub use operations::*;pub use sort::*;pub use statistics::*;pub use summary::*;pub use vector::*;
Modules§
- Module for type conversions between integers and floating-point types, and between
f32andf64. - Normalization methods for
Vector<T>. - Arithmetic operations for
Vector<T>. - Sorting methods for
Vector<T>. - Statistical methods for
Vector<T>. - Provides the
Summarystruct and its display implementation. - Defines the
Vector<T>struct that wrapsVec<T>and provides conversion traits.