Home
last modified time | relevance | path

Searched defs:yDot (Results 1 – 11 of 11) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DFirstOrderDifferentialEquations.java63 void computeDerivatives(double t, double[] y, double[] yDot) in computeDerivatives()
DSecondOrderDifferentialEquations.java66 void computeSecondDerivatives(double t, double[] y, double[] yDot, double[] yDDot) in computeSecondDerivatives()
DSecondOrderIntegrator.java57 double t, double[] y, double[] yDot) in integrate()
DFirstOrderConverter.java103 public void computeDerivatives(final double t, final double[] y, final double[] yDot) in computeDerivatives()
DAbstractIntegrator.java205 public void computeDerivatives(final double t, final double[] y, final double[] yDot) in computeDerivatives()
237 final double[] y, final double[] yDot, final double tEnd) in acceptStep()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DFixedStepHandler.java60 void handleStep(double t, double[] y, double[] yDot, boolean isLast) throws DerivativeException; in handleStep()
DDummyStepInterpolator.java69 public DummyStepInterpolator(final double[] y, final double[] yDot, final boolean forward) { in DummyStepInterpolator()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
DODEWithJacobians.java51 void computeJacobians(double t, double[] y, double[] yDot, double[][] dFdY, double[][] dFdP) in computeJacobians()
DFirstOrderIntegratorWithJacobians.java366 private final double[] yDot; field in FirstOrderIntegratorWithJacobians.MappingWrapper
491 … public void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeException { in computeDerivatives()
503 public void computeJacobians(double t, double[] y, double[] yDot, in computeJacobians()
606 private double[] yDot; field in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DAdamsBashforthIntegrator.java203 final double[] yDot = new double[n]; in integrate() local
DAdamsMoultonIntegrator.java220 final double[] yDot = new double[y0.length]; in integrate() local