MCPcopy Create free account
hub / github.com/Aghajari/MathParser / min

Method min

MathParser/src/com/aghajari/math/Functions.java:141–146  ·  view source on GitHub ↗
(Double... a)

Source from the content-addressed store, hash-verified

139 }
140
141 public static double min(Double... a) {
142 double out = a[0];
143 for (double b : a)
144 out = Math.min(out, b);
145 return out;
146 }
147
148 public static double sum(Double... a) {
149 double out = 0;

Callers 2

findBestIndexMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected