16个版本
0.9.2 | 2023年4月6日 |
---|---|
0.9.1 | 2023年2月5日 |
0.9.0 | 2022年11月12日 |
0.3.17 | 2022年2月7日 |
0.2.2 |
|
#537 在 数学
用于 有限元方法
87KB
2.5K SLoC
扩展矩阵
矩阵计算模块。
示例
#[macro_use]
extern crate extended_matrix;
use extended_matrix::{Matrix, BasicOperationsTrait};
let m_1 = Matrix::create(2, 2, &[1.0, 2.0, 3.0, 4.0]);
let m_2 = Matrix::create(2, 2, &[1.0, 2.0, 3.0, 4.0]);
let m_expected_1 = Matrix::create(2, 2, &[2.0, 4.0, 6.0, 8.0]);
assert_eq!(m_1.add(&m_2), Ok(m_expected_1));