/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/ |
D | FirstOrderIntegratorWithJacobians.java | 400 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/ |
D | seamless_cloning_impl.cpp | 263 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()
|
D | seamless_cloning.hpp | 64 …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/ |
D | AbstractIntegrator.java | 205 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()
|
D | FirstOrderDifferentialEquations.java | 63 void computeDerivatives(double t, double[] y, double[] yDot) in computeDerivatives() method
|
D | MultistepIntegrator.java | 396 public void computeDerivatives(double t, double[] y, double[] dot) in computeDerivatives() method in MultistepIntegrator.CountingDifferentialEquations 398 MultistepIntegrator.this.computeDerivatives(t, y, dot); in computeDerivatives()
|
D | FirstOrderConverter.java | 103 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/ |
D | RungeKuttaIntegrator.java | 143 computeDerivatives(stepStart, y, yDotK[0]); in integrate() 156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]); in integrate()
|
D | DormandPrince853StepInterpolator.java | 407 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()
|
D | AdamsMoultonIntegrator.java | 257 computeDerivatives(stepEnd, yTmp, yDot); in integrate() 279 computeDerivatives(stepEnd, yTmp, yDot); in integrate()
|
D | EmbeddedRungeKuttaIntegrator.java | 243 computeDerivatives(stepStart, y, yDotK[0]); in integrate() 275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]); in integrate()
|
D | GraggBulirschStoerIntegrator.java | 475 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()
|
D | AdamsBashforthIntegrator.java | 262 computeDerivatives(stepEnd, y, yDot); in integrate()
|
D | AdaptiveStepsizeIntegrator.java | 252 computeDerivatives(t0 + h, y1, yDot1); in initializeStep()
|