#通用 #基础 #测试

无 std wmath

聚合多个数学模块的数学库

7 个版本

0.3.8 2022年7月18日
0.3.6 2022年7月14日
0.3.1 2022年6月13日
0.2.0 2022年5月2日
0.1.0 2022年4月28日

#62 in #基础

Download history • Rust 包仓库 327/week @ 2024-04-08 • Rust 包仓库 292/week @ 2024-04-15 • Rust 包仓库 546/week @ 2024-04-22 • Rust 包仓库 420/week @ 2024-04-29 • Rust 包仓库 769/week @ 2024-05-06 • Rust 包仓库 1198/week @ 2024-05-13 • Rust 包仓库 354/week @ 2024-05-20 • Rust 包仓库 1052/week @ 2024-05-27 • Rust 包仓库 299/week @ 2024-06-03 • Rust 包仓库 215/week @ 2024-06-10 • Rust 包仓库 167/week @ 2024-06-17 • Rust 包仓库 45/week @ 2024-06-24 • Rust 包仓库 343/week @ 2024-07-01 • Rust 包仓库 88/week @ 2024-07-08 • Rust 包仓库 308/week @ 2024-07-15 • Rust 包仓库 162/week @ 2024-07-22 • Rust 包仓库

907 每月下载量
用于 2 个包(通过 wplot

MIT 许可证

140KB
3.5K SLoC

模块 :: wmath 实验性 rust-status docs.rs Open in Gitpod

discord

聚合多个数学模块的数学库。

示例

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] */

添加到您的项目中

cargo add wmath

从仓库中尝试

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

依赖项

~4–17MB
~273K SLoC