The following recursive updating formula is used:
Let
new value = old value + dev^2 * (n -1) / n.
Returns Double.NaN
if no data values have been added and returns 0
if there is just one value in the data set.
Note that this implementation is not synchronized. If multiple threads access an instance of this class concurrently, and at least one of the threads invokes the increment()
or clear()
method, it must be synchronized externally.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|