Returns the lowest 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#NEGATIVE_INFINITY and not Double#NaN then the result is {@link Double#NEGATIVE_
()
| 304 | * @throws IllegalStateException if the dataset is empty |
| 305 | */ |
| 306 | public double min() { |
| 307 | checkState(count != 0); |
| 308 | return min; |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * Returns the highest value in the dataset. The count must be non-zero. |