78个版本
使用旧Rust 2015
0.22.0 | 2018年12月15日 |
---|---|
0.21.12 | 2017年11月17日 |
0.21.10 | 2017年8月27日 |
0.21.8 | 2017年7月10日 |
0.0.2 | 2014年11月21日 |
#1624 in 数学
每月215次下载
用于 6 crates
82KB
2.5K SLoC
Matrix
该包提供了一个矩阵实验室。
示例
#[macro_use]
extern crate matrix;
use matrix::prelude::*;
let mut sparse = Compressed::zero((2, 4));
sparse.set((0, 0), 42.0);
sparse.set((1, 3), 69.0);
let dense = Conventional::from(&sparse);
assert!(
&*dense == &*matrix![
42.0, 0.0, 0.0, 0.0;
0.0, 0.0, 0.0, 69.0;
]
);
贡献
您的贡献非常受重视。请勿犹豫,提出问题或发起拉取请求。请注意,任何提交给项目包含的贡献将根据LICENSE.md中给出的条款进行许可。
依赖关系
~0.2–9.5MB
~127K SLoC