Searched refs:tmpDot (Results 1 - 1 of 1) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java468 private final double[] tmpDot; field in class:FirstOrderIntegratorWithJacobians.FiniteDifferencesWrapper
482 tmpDot = new double[ode.getDimension()];
519 ode.computeDerivatives(t, y, tmpDot);
521 dFdY[i][j] = (tmpDot[i] - yDot[i]) / hY[j];
529 ode.computeDerivatives(t, y, tmpDot);
531 dFdP[i][j] = (tmpDot[i] - yDot[i]) / hP[j];

Completed in 215 milliseconds