1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2018年9月1日 |
---|
在 #differential-equations 中排名第9
3.5MB
136 行
包含 (ELF exe/lib, 9MB) kcov-build/usr/local/bin/kcov, (ELF exe/lib, 3MB) kcov-system-daemon
[lin-badge]: https://travis-ci.org/phillyfan1138/second_order_ode_rust.svg?branch=master [cov-badge]: https://codecov.io/gh/phillyfan1138/second_order_ode_rust/branch/master/graph/badge.svg
Linux | Codecov |
---|---|
![lin-badge] | ![cov-badge] |
二阶常微分方程求解器
此仓库可以求解二阶常微分方程:h(x)f''(x)+g(x)f'(x)+c(x)f(x)=0。用户必须指定
- 函数 h(x),g(x) 和 c(x)
- 两个边界条件(在 f(xmin) 和 f(xmax) 处)。
- 变量 x 的定义域(xmin 和 xmax)
- 要评估函数的离散点数。