Crate math_ops

source
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§

Modules§

  • Module for type conversions between integers and floating-point types, and between f32 and f64.
  • Normalization methods for Vector<T>.
  • Arithmetic operations for Vector<T>.
  • Sorting methods for Vector<T>.
  • Statistical methods for Vector<T>.
  • Provides the Summary struct and its display implementation.
  • Defines the Vector<T> struct that wraps Vec<T> and provides conversion traits.