HomeSort by relevance Sort by last modified time
    Searched defs:computeDerivatives (Results 1 - 10 of 10) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
FirstOrderDifferentialEquations.java 63 void computeDerivatives(double t, double[] y, double[] yDot)
FirstOrderConverter.java 39 * #computeDerivatives computeDerivatives}, this wrapper does copy 4n
103 public void computeDerivatives(final double t, final double[] y, final double[] yDot)
MultistepIntegrator.java 396 public void computeDerivatives(double t, double[] y, double[] dot)
398 MultistepIntegrator.this.computeDerivatives(t, y, dot);
AbstractIntegrator.java 192 * @see #computeDerivatives(double, double[], double[])
205 public void computeDerivatives(final double t, final double[] y, final double[] yDot)
210 equations.computeDerivatives(t, y, yDot);
304 computeDerivatives(eventT, y, yDot);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 143 computeDerivatives(stepStart, y, yDotK[0]);
156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
AdamsBashforthIntegrator.java 262 computeDerivatives(stepEnd, y, yDot);
AdamsMoultonIntegrator.java 257 computeDerivatives(stepEnd, yTmp, yDot);
279 computeDerivatives(stepEnd, yTmp, yDot);
EmbeddedRungeKuttaIntegrator.java 243 computeDerivatives(stepStart, y, yDotK[0]);
275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
GraggBulirschStoerIntegrator.java 475 computeDerivatives(t, yEnd, f[1]);
492 computeDerivatives(t, yEnd, f[j+1]);
649 computeDerivatives(stepStart, y, yDot0);
809 computeDerivatives(stepStart + stepSize, y1, yDot1);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
FirstOrderIntegratorWithJacobians.java 400 public void computeDerivatives(final double t, final double[] z, final double[] zDot)
411 ode.computeDerivatives(t, y, yDot);
491 public void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeException {
492 // this call to computeDerivatives has already been counted,
494 ode.computeDerivatives(t, y, yDot);
519 ode.computeDerivatives(t, y, tmpDot);
529 ode.computeDerivatives(t, y, tmpDot);
    [all...]

Completed in 73 milliseconds