| 31 | } |
| 32 | |
| 33 | float getAvgSigma() const // standard deviation of average |
| 34 | { |
| 35 | if (N == 0) return 0.0f; |
| 36 | else return getSigma()/sqrt(float(N)); |
| 37 | } |
| 38 | |
| 39 | float getMin() const { return vmin; } |
| 40 | float getMax() const { return vmax; } |
no test coverage detected