Searched refs:singleQuantile (Results 1 – 6 of 6) sorted by relevance
/external/guava/guava-tests/test/com/google/common/math/ |
D | QuantilesAlgorithmTest.java | 54 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(1, 2, dataset.clone()); in testSingleQuantile_median() 57 .that(algorithm.singleQuantile(1, 2, dataset.clone())) in testSingleQuantile_median() 64 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(99, 100, dataset.clone()); in testSingleQuantile_percentile99() 67 .that(algorithm.singleQuantile(99, 100, dataset.clone())) in testSingleQuantile_percentile99()
|
D | QuantilesAlgorithm.java | 43 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 79 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 98 builder.put(index, singleQuantile(index, scale, dataset)); in multipleQuantiles() 108 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 124 abstract double singleQuantile(int index, int scale, double[] dataset); in singleQuantile() method in QuantilesAlgorithm
|
/external/guava/android/guava-tests/test/com/google/common/math/ |
D | QuantilesAlgorithmTest.java | 54 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(1, 2, dataset.clone()); in testSingleQuantile_median() 57 .that(algorithm.singleQuantile(1, 2, dataset.clone())) in testSingleQuantile_median() 64 double referenceValue = REFERENCE_ALGORITHM.singleQuantile(99, 100, dataset.clone()); in testSingleQuantile_percentile99() 67 .that(algorithm.singleQuantile(99, 100, dataset.clone())) in testSingleQuantile_percentile99()
|
D | QuantilesAlgorithm.java | 43 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 79 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 98 builder.put(index, singleQuantile(index, scale, dataset)); in multipleQuantiles() 108 double singleQuantile(int index, int scale, double[] dataset) { in singleQuantile() method 124 abstract double singleQuantile(int index, int scale, double[] dataset); in singleQuantile() method in QuantilesAlgorithm
|
/external/guava/guava-tests/benchmark/com/google/common/math/ |
D | QuantilesBenchmark.java | 62 dummy += algorithm.singleQuantile(1, 2, dataset(i)); in median() 71 dummy += algorithm.singleQuantile(90, 100, dataset(i)); in percentile90() 80 dummy += algorithm.singleQuantile(99, 100, dataset(i)); in percentile99()
|
/external/guava/android/guava-tests/benchmark/com/google/common/math/ |
D | QuantilesBenchmark.java | 62 dummy += algorithm.singleQuantile(1, 2, dataset(i)); in median() 71 dummy += algorithm.singleQuantile(90, 100, dataset(i)); in percentile90() 80 dummy += algorithm.singleQuantile(99, 100, dataset(i)); in percentile99()
|