------------------------------------------------------------------------ */
| 90 | |
| 91 | /* ------------------------------------------------------------------------ */ |
| 92 | SumType Mean() const { return (total_samples_ < 1) ? 0.0 : sum_ / total_samples_; } |
| 93 | |
| 94 | /* ------------------------------------------------------------------------ */ |
| 95 | // Rolling mean is only used for fixed sized data for now. We don't need this |