Mean and Median Functions

mean(A, B, C, ...) Returns the arithmetic mean, or average, of A, B, C, ... by summing all elements in the arguments and dividing by the total number of elements.

median(A, B, C, ...) Returns the median of the elements in A, B, C, ... , the value above and below which there are an equal number of values.

gmean(A, B, C, ...) Returns the geometric mean of A, B, C, ... defined by

geometric mean of A, B, C

hmean(A, B, C, ...) Returns the harmonic mean of A, B, C, ... defined by

harmonic mean of A, B, C

where M is an array created from the function arguments A, B, C, ...

Arguments:

Notes:

QuickSheet