OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scaledH
(Results
1 - 4
of
4
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsBashforthIntegrator.java
294
final double
scaledH
= stepSize * factor;
295
final double nextT = stepStart +
scaledH
;
297
hNew = filterStep(
scaledH
, forward, nextIsLast);
AdamsMoultonIntegrator.java
313
final double
scaledH
= stepSize * factor;
314
final double nextT = stepStart +
scaledH
;
316
hNew = filterStep(
scaledH
, forward, nextIsLast);
EmbeddedRungeKuttaIntegrator.java
319
final double
scaledH
= stepSize * factor;
320
final double nextT = stepStart +
scaledH
;
322
hNew = filterStep(
scaledH
, forward, nextIsLast);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java
[
all
...]
Completed in 58 milliseconds