Home
last modified time | relevance | path

Searched refs:computeDerivatives (Results 1 – 14 of 14) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
DFirstOrderIntegratorWithJacobians.java400 public void computeDerivatives(final double t, final double[] z, final double[] zDot) in computeDerivatives() method in FirstOrderIntegratorWithJacobians.MappingWrapper
411 ode.computeDerivatives(t, y, yDot); in computeDerivatives()
491 … public void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeException { in computeDerivatives() method in FirstOrderIntegratorWithJacobians.FiniteDifferencesWrapper
494 ode.computeDerivatives(t, y, yDot); in computeDerivatives()
519 ode.computeDerivatives(t, y, tmpDot); in computeJacobians()
529 ode.computeDerivatives(t, y, tmpDot); in computeJacobians()
/external/opencv3/modules/photo/src/
Dseamless_cloning_impl.cpp263 void Cloning::computeDerivatives(const Mat& destination, const Mat &patch, const Mat &binaryMask) in computeDerivatives() function in Cloning
347 computeDerivatives(destination,patch,binaryMask); in normalClone()
411 computeDerivatives(I,mask,wmask); in localColorChange()
423 computeDerivatives(I,mask,wmask); in illuminationChange()
454 computeDerivatives(I,mask,wmask); in textureFlatten()
Dseamless_cloning.hpp64 …void computeDerivatives(const cv::Mat &destination, const cv::Mat &patch, const cv::Mat &binaryMas…
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DAbstractIntegrator.java205 public void computeDerivatives(final double t, final double[] y, final double[] yDot) in computeDerivatives() method in AbstractIntegrator
210 equations.computeDerivatives(t, y, yDot); in computeDerivatives()
304 computeDerivatives(eventT, y, yDot); in acceptStep()
DFirstOrderDifferentialEquations.java63 void computeDerivatives(double t, double[] y, double[] yDot) in computeDerivatives() method
DMultistepIntegrator.java396 public void computeDerivatives(double t, double[] y, double[] dot) in computeDerivatives() method in MultistepIntegrator.CountingDifferentialEquations
398 MultistepIntegrator.this.computeDerivatives(t, y, dot); in computeDerivatives()
DFirstOrderConverter.java103 public void computeDerivatives(final double t, final double[] y, final double[] yDot) in computeDerivatives() method in FirstOrderConverter
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DRungeKuttaIntegrator.java143 computeDerivatives(stepStart, y, yDotK[0]); in integrate()
156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]); in integrate()
DDormandPrince853StepInterpolator.java407 integrator.computeDerivatives(pT + C14 * h, yTmp, yDotKLast[0]); in doFinalize()
417 integrator.computeDerivatives(pT + C15 * h, yTmp, yDotKLast[1]); in doFinalize()
427 integrator.computeDerivatives(pT + C16 * h, yTmp, yDotKLast[2]); in doFinalize()
DAdamsMoultonIntegrator.java257 computeDerivatives(stepEnd, yTmp, yDot); in integrate()
279 computeDerivatives(stepEnd, yTmp, yDot); in integrate()
DEmbeddedRungeKuttaIntegrator.java243 computeDerivatives(stepStart, y, yDotK[0]); in integrate()
275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]); in integrate()
DGraggBulirschStoerIntegrator.java475 computeDerivatives(t, yEnd, f[1]); in tryStep()
492 computeDerivatives(t, yEnd, f[j+1]); in tryStep()
649 computeDerivatives(stepStart, y, yDot0); in integrate()
809 computeDerivatives(stepStart + stepSize, y1, yDot1); in integrate()
DAdamsBashforthIntegrator.java262 computeDerivatives(stepEnd, y, yDot); in integrate()
DAdaptiveStepsizeIntegrator.java252 computeDerivatives(t0 + h, y1, yDot1); in initializeStep()