second_order_ode 0.1.0

A library for solving second order ODEs.
Documentation
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.