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

Method min

JSAT/src/jsat/math/MathTricks.java:37–43  ·  view source on GitHub ↗

@param vals an array of values to get the maximum of @return the maximum of all given values

(double... vals)

Source from the content-addressed store, hash-verified

35 * @return the maximum of all given values
36 */
37 public static double min(double... vals)
38 {
39 double m = Double.NEGATIVE_INFINITY;
40 for(double v : vals)
41 m = Math.min(v, m);
42 return m;
43 }
44
45
46 /**

Callers 9

classifyMethod · 0.95
invGammaPMethod · 0.45
addMethod · 0.45
lineSearchMethod · 0.45
zoomMethod · 0.45
optimizeMethod · 0.45
updateMethod · 0.45
rateMethod · 0.45
rateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected