Adds a data sample with unit weight to the counts. @param x the data value to add
(double x)
| 92 | * @param x the data value to add |
| 93 | */ |
| 94 | public void add(double x) |
| 95 | { |
| 96 | add(x, 1.0); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Adds a data sample the the counts with the provided weight of influence. |