Returns the arithmetic mean of the values. The count must be non-zero. The definition of the mean is the same as Stats#mean. @param values a series of values, which will be converted to double values (this may cause
(Iterable<? extends Number> values)
| 418 | |
| 419 | |
| 420 | public static double meanOf(Iterable<? extends Number> values) { |
| 421 | return meanOf(values.iterator()); |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * Returns the <a href="http://en.wikipedia.org/wiki/Arithmetic_mean">arithmetic mean</a> of the |
nothing calls this directly
no test coverage detected