Returns the highest value in the dataset. The count must be non-zero. Non-finite values If the dataset contains Double#NaN then the result is Double#NaN. If it contains Double#POSITIVE_INFINITY and not Double#NaN then the result is {@link Double#POSITIVE
()
| 376 | |
| 377 | |
| 378 | public double max() { |
| 379 | checkState(count != 0); |
| 380 | return max; |
| 381 | } |
| 382 | |
| 383 | double sumOfSquaresOfDeltas() { |
| 384 | return sumOfSquaresOfDeltas; |
no test coverage detected