MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / romb

Method romb

JSAT/src/jsat/math/integration/Romberg.java:13–16  ·  view source on GitHub ↗
(Function f, double a, double b)

Source from the content-addressed store, hash-verified

11{
12
13 public static double romb(Function f, double a, double b)
14 {
15 return romb(f, a, b, 20);
16 }
17
18 public static double romb(Function f, double a, double b, int max)
19 {

Callers 4

cdfMethod · 0.95
meanMethod · 0.95
varianceMethod · 0.95
skewnessMethod · 0.95

Calls 2

trapzMethod · 0.95
powMethod · 0.45

Tested by

no test coverage detected