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§
- conversion
- Module for type conversions between integers and floating-point types,
and between
f32andf64. - normalize
- Normalization methods for
Vector<T>. - operations
- Arithmetic operations for
Vector<T>. - sort
- Sorting methods for
Vector<T>. - statistics
- Statistical methods for
Vector<T>. - summary
- Provides the
Summarystruct and its display implementation. - vector
- Defines the
Vector<T>struct that wrapsVec<T>and provides conversion traits.