reduceMean method

double reduceMean()

Return mean of all elements of this

Implementation

double reduceMean() {
  return reduceSum() / m / n;
}