1 个不稳定版本
0.3.1 | 2023 年 11 月 15 日 |
---|---|
0.3.0 |
|
0.2.1 |
|
0.1.1 |
|
0.0.0 |
|
532 在 数学 中排名
每月 44 次下载
16KB
311 行
Polymath
一个库,用于使 Rust 中的数学更美观、更灵活!
示例
// Matrix
use polymath::prelude::*;
fn main() {
let a: Matrix<f64> = Matrix::new((2, 4), 0.0);
let b: Matrix<f64> = a + 5.0; // Supports addition. (Of many kinds.)
}