Searched refs:dataCopied (Results 1 – 1 of 1) sorted by relevance
81 double[] dataCopied = Arrays.copyOf(data, data.length); in getStatWithOutlierRejection() local82 Arrays.sort(dataCopied); in getStatWithOutlierRejection()83 int medianIndex = dataCopied.length / 2; in getStatWithOutlierRejection()85 if (dataCopied.length % 2 == 1) { in getStatWithOutlierRejection()86 median = dataCopied[medianIndex]; in getStatWithOutlierRejection()88 median = (dataCopied[medianIndex - 1] + dataCopied[medianIndex]) / 2.0; in getStatWithOutlierRejection()