Home
last modified time | relevance | path

Searched refs:yDot2 (Results 1 – 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DMidpointStepInterpolator.java93 final double yDot2 = yDotK[1][i]; in computeInterpolatedStateAndDerivatives() local
94 interpolatedState[i] = currentState[i] + coeff1 * yDot1 - coeff2 * yDot2; in computeInterpolatedStateAndDerivatives()
95 interpolatedDerivatives[i] = coeffDot1 * yDot1 + coeffDot2 * yDot2; in computeInterpolatedStateAndDerivatives()
DThreeEighthesStepInterpolator.java104 final double yDot2 = yDotK[1][i]; in computeInterpolatedStateAndDerivatives() local
108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
110 coeffDot1 * yDot1 + coeffDot2 * yDot2 + coeffDot3 * yDot3 + coeffDot4 * yDot4; in computeInterpolatedStateAndDerivatives()
DHighamHall54StepInterpolator.java91 final double yDot2 = yDotK[2][i]; in computeInterpolatedStateAndDerivatives() local
96 currentState[i] + b0 * yDot0 + b2 * yDot2 + b3 * yDot3 + b4 * yDot4 + b5 * yDot5; in computeInterpolatedStateAndDerivatives()
98 bDot0 * yDot0 + bDot2 * yDot2 + bDot3 * yDot3 + bDot4 * yDot4 + bDot5 * yDot5; in computeInterpolatedStateAndDerivatives()
DGillStepInterpolator.java114 final double yDot2 = yDotK[1][i]; in computeInterpolatedStateAndDerivatives() local
118 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
120 coeffDot1 * yDot1 + coeffDot2 * yDot2 + coeffDot3 * yDot3 + coeffDot4 * yDot4; in computeInterpolatedStateAndDerivatives()
DDormandPrince54StepInterpolator.java185 final double yDot2 = yDotK[2][i]; in computeInterpolatedStateAndDerivatives() local
190 v1[i] = A70 * yDot0 + A72 * yDot2 + A73 * yDot3 + A74 * yDot4 + A75 * yDot5; in computeInterpolatedStateAndDerivatives()
193 v4[i] = D0 * yDot0 + D2 * yDot2 + D3 * yDot3 + D4 * yDot4 + D5 * yDot5 + D6 * yDot6; in computeInterpolatedStateAndDerivatives()