From 4dcc3e66d27537bd9832f92c5a9d13d511864efc Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 28 Mar 2010 12:12:43 +0000 Subject: [PATCH] removed wrong subscript git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@928383 13f79535-47bb-0310-9956-ffa450edef68 --- src/site/xdoc/userguide/ode.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/site/xdoc/userguide/ode.xml b/src/site/xdoc/userguide/ode.xml index 40dfd5d8a..20db5dd09 100644 --- a/src/site/xdoc/userguide/ode.xml +++ b/src/site/xdoc/userguide/ode.xml @@ -295,7 +295,7 @@ public int eventOccurred(double t, double[] y, boolean increasing) { The classes and interfaces in this package mimic the behavior of the classes and interfaces of the top level ode package, only adding parameters arrays for the jacobians. The behavior of these classes is to create a compound state vector z containing both - the state y(t) and its derivatives dy(t)/dy0 and dy(t0)/dp and + the state y(t) and its derivatives dy(t)/dy0 and dy(t)/dp and to set up an extended problem by adding the equations for the jacobians automatically. These extended state and problems are then provided to a classical underlying integrator chosen by user. @@ -317,7 +317,7 @@ public int eventOccurred(double t, double[] y, boolean increasing) { jacobians on one side and compound state on the other side.

- In order to compute dy(t)/dy0 and dy(t0)/dp for any t, the algorithm + In order to compute dy(t)/dy0 and dy(t/dp for any t, the algorithm needs not only the ODE function f such that y'=f(t,y) but also its local jacobians df(t, y, p)/dy and df(t, y, p)/dp.