Returns the arithmetic mean of the values. The count must be non-zero. If these values are a sample drawn from a population, this is also an unbiased estimator of the arithmetic mean of the population. Non-finite values If
()
| 191 | |
| 192 | |
| 193 | public double mean() { |
| 194 | checkState(count != 0); |
| 195 | return mean; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Returns the sum of the values. |
no test coverage detected