| Class | Description |
|---|---|
| Reservoir |
FIFO-like reservoir of a fixed size capable
calculating running sums, min/max, average, msdev and stddev
msdev and stddev calculation by Naive algorithm
(Mean square deviation) msdev = sqrt((∑{i = from 1 to n}(Xi)^2 -(∑{i = from 1 to n}Xi)^2 / N) / N)
(Standard deviation) stddev = sqrt((∑{i = from 1 to n}(Xi)^2 -(∑{i = from 1 to n}Xi)^2 / N) / N - 1)
link: https://goo.gl/MAEGP2
|
Copyright © 2020. All rights reserved.