Here you can find the source of mean(long[] values)
public static long mean(long[] values)
//package com.java2s; //License from project: Open Source License public class Main { public static long mean(long[] values) { long sum = 0l; for (long v : values) { sum += v;//from w w w . j a v a2 s. c o m } return sum / values.length; } }