MCPcopy Create free account
hub / github.com/RenderKit/embree / getAvgSigma

Method getAvgSigma

tutorials/common/tutorial/statistics.h:33–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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; }

Callers 3

executeMethod · 0.45
renderBenchmarkLegacyFunction · 0.45
getAvgSigmaMethod · 0.45

Calls 1

sqrtFunction · 0.50

Tested by

no test coverage detected