OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bspl
(Results
1 - 1
of
1
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GraggBulirschStoerStepInterpolator.java
252
final double
bspl
= yp0 - ydiff;
local
257
polynoms[3][i] =
bspl
;
264
final double ph0 = 0.5 * (currentState[i] + y1[i]) + 0.125 * (aspl +
bspl
);
268
final double ph1 = ydiff + 0.25 * (aspl -
bspl
);
276
final double ph3 = 6 * (
bspl
- aspl);
Completed in 597 milliseconds