Searched defs:computeDerivatives (Results 1 - 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
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 DFirstOrderDifferentialEquations.java63 void computeDerivatives(double t, double[] y, double[] yDot) method in interface:FirstOrderDifferentialEquations
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);
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);
/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 291 milliseconds