#general-purpose #testing #wmath

no-std wmath

Math library aggregating several math modules

7 releases

0.3.8 Jul 18, 2022
0.3.6 Jul 14, 2022
0.3.1 Jun 13, 2022
0.2.0 May 2, 2022
0.1.0 Apr 28, 2022

#61 in #general-purpose

Download history 284/week @ 2024-12-16 24/week @ 2024-12-23 79/week @ 2024-12-30 5/week @ 2025-01-06 20/week @ 2025-01-13 92/week @ 2025-01-20 13/week @ 2025-01-27 15/week @ 2025-02-03 17/week @ 2025-02-10 18/week @ 2025-02-17 14/week @ 2025-02-24 288/week @ 2025-03-03 198/week @ 2025-03-10 84/week @ 2025-03-17 85/week @ 2025-03-24 168/week @ 2025-03-31

541 downloads per month
Used in 2 crates (via wplot)

MIT license

140KB
3.5K SLoC

Module :: wmath experimental rust-status docs.rs Open in Gitpod

discord

Math library aggregating several math modules.

Sample

use wmath::adapter::prelude::*;

let x2_original = wmath::X2::< u8 >( 1, 3 );
println!( "{:?}", x2_original );
/* log : X2(1, 3) */
let x2_to_array = x2_original.clone_as_array();
println!( "{:?}", x2_to_array );
/* log : [1, 3] */

To add to your project

cargo add wmath

Try out from the repository

git clone https://github.com/Wandalen/wMath
cd wMath
cd sample/rust/wmath_trivial
cargo run

Dependencies

~4–19MB
~312K SLoC