Represents different methods to calculate the mean.
"arithmetic"
(a+b)/2
"geometric"
sqrt(ab)
"harmonic"
2/(1/a+1/b)
"logarithmic"
10^sqrt(log10(a)*log10(b))
Represents different methods to calculate the mean.
"arithmetic"(a+b)/2is a bit faster but way less accurate for large numbers."geometric"sqrt(ab)is more accurate, and is the default."harmonic"2/(1/a+1/b)is the slowest. You probably don't need this."logarithmic"10^sqrt(log10(a)*log10(b))is the most "accurate" and slightly slower.