Here you can find the source of getMedian(double array[])
static public double getMedian(double array[])
//package com.java2s; // it under the terms of the GNU General Public License as published by // import java.util.Arrays; public class Main { static public double getMedian(double array[]) { Arrays.sort(array);/*from w w w. j a v a 2 s.c o m*/ return array[array.length / 2]; } }