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
()
| 218 | |
| 219 | |
| 220 | public double mean() { |
| 221 | checkState(count != 0); |
| 222 | return mean; |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Returns the sum of the values. |