From 3187d68a8899daab9b6c08319719027d9ad7707b Mon Sep 17 00:00:00 2001 From: Ricky Chen Date: Wed, 14 Nov 2018 13:42:21 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3645598f..1bb6dbd2 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ We encourage those who are interested in using this library to take a look at `e

## Basic usage -This library provides one main interface `odeint` which contains general-purpose algorithms for solving initial value problems (IVP), with gradients implemented for all main arguments. An initial value problem provides an ODE and an initial value +This library provides one main interface `odeint` which contains general-purpose algorithms for solving initial value problems (IVP), with gradients implemented for all main arguments. An initial value problem consists of an ODE and an initial value, ``` -dy/dt = f(t, y) y(t_0) = y_0 +dy/dt = f(t, y) y(t_0) = y_0. ``` The goal of an ODE solver is to find a continuous trajectory satisfying the ODE that passes through the initial condition.