1 unstable release

Uses old Rust 2015

0.1.0 Sep 1, 2018

#9 in #differential-equations

MIT license

3.5MB
136 lines

Contains (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]

ODE Solver for second order differential equations

This repository can solve second order ODEs: h(x)f''(x)+g(x)f'(x)+c(x)f(x)=0. The user must specify

  • the functions h(x), g(x), and c(x)
  • two boundary conditions (at f(xmin) and f(xmax)).
  • the domain of x (xmin and xmax)
  • the number of discrete points to evaluate the function at.

No runtime deps