commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Quantile.java [450:460]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final int[] x;
        final int start;
        final int end;
        if (copy) {
            x = Statistics.copy(values, from, to);
            start = 0;
            end = n;
        } else {
            x = values;
            start = from;
            end = to;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Quantile.java [538:548]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final int[] x;
        final int start;
        final int end;
        if (copy) {
            x = Statistics.copy(values, from, to);
            start = 0;
            end = n;
        } else {
            x = values;
            start = from;
            end = to;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



