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

Method root

JSAT/src/jsat/math/rootfinding/Secant.java:16–19  ·  view source on GitHub ↗
(double a, double b, Function f, double... args)

Source from the content-addressed store, hash-verified

14 private static final long serialVersionUID = -5175113107084930582L;
15
16 public static double root(double a, double b, Function f, double... args)
17 {
18 return root(1e-15, 1000, a, b, 0, f, args);
19 }
20
21 public static double root(double eps, double a, double b, Function f, double... args)
22 {

Callers 4

testRoot_4argsMethod · 0.95
testRoot_5argsMethod · 0.95
testRoot_6argsMethod · 0.95
testRoot_7argsMethod · 0.95

Calls 2

fMethod · 0.65
arrayCopyMethod · 0.45

Tested by 4

testRoot_4argsMethod · 0.76
testRoot_5argsMethod · 0.76
testRoot_6argsMethod · 0.76
testRoot_7argsMethod · 0.76