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

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DFirstOrderDifferentialEquations.java63 void computeDerivatives(double t, double[] y, double[] yDot) method in interface:FirstOrderDifferentialEquations
H A DFirstOrderConverter.java39 * #computeDerivatives computeDerivatives}, this wrapper does copy 4n
103 public void computeDerivatives(final double t, final double[] y, final double[] yDot) method in class:FirstOrderConverter
H A DMultistepIntegrator.java396 public void computeDerivatives(double t, double[] y, double[] dot) method in class:MultistepIntegrator.CountingDifferentialEquations
398 MultistepIntegrator.this.computeDerivatives(t, y, dot);
H A DAbstractIntegrator.java192 * @see #computeDerivatives(double, double[], double[])
205 public void computeDerivatives(final double t, final double[] y, final double[] yDot) method in class:AbstractIntegrator
210 equations.computeDerivatives(t, y, yDot);
304 computeDerivatives(eventT, y, yDot);
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaIntegrator.java143 computeDerivatives(stepStart, y, yDotK[0]);
156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
H A DDormandPrince853StepInterpolator.java407 integrator.computeDerivatives(pT + C14 * h, yTmp, yDotKLast[0]);
417 integrator.computeDerivatives(pT + C15 * h, yTmp, yDotKLast[1]);
427 integrator.computeDerivatives(pT + C16 * h, yTmp, yDotKLast[2]);
H A DAdamsMoultonIntegrator.java257 computeDerivatives(stepEnd, yTmp, yDot);
279 computeDerivatives(stepEnd, yTmp, yDot);
H A DEmbeddedRungeKuttaIntegrator.java243 computeDerivatives(stepStart, y, yDotK[0]);
275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
H A DAdamsBashforthIntegrator.java262 computeDerivatives(stepEnd, y, yDot);
H A DGraggBulirschStoerIntegrator.java475 computeDerivatives(t, yEnd, f[1]);
492 computeDerivatives(t, yEnd, f[j+1]);
649 computeDerivatives(stepStart, y, yDot0);
809 computeDerivatives(stepStart + stepSize, y1, yDot1);
H A DAdaptiveStepsizeIntegrator.java252 computeDerivatives(t0 + h, y1, yDot1);
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java400 public void computeDerivatives(final double t, final double[] z, final double[] zDot) method in class:FirstOrderIntegratorWithJacobians.MappingWrapper
411 ode.computeDerivatives(t, y, yDot);
491 public void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeException { method in class:FirstOrderIntegratorWithJacobians.FiniteDifferencesWrapper
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);

Completed in 114 milliseconds