Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 820 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 820 Bytes
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.