second_order_ode

Crates.iosecond_order_ode
lib.rssecond_order_ode
version0.1.0
sourcesrc
created_at2018-09-01 16:36:15.612542
updated_at2018-09-01 16:36:15.612542
descriptionA library for solving second order ODEs.
homepagehttps://github.com/phillyfan1138/second_order_ode_rust
repositoryhttps://github.com/phillyfan1138/second_order_ode_rust
max_upload_size
id82509
size12,441,032
Daniel Stahl (phillyfan1138)

documentation

README

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.
Commit count: 10

cargo fmt