Home
last modified time | relevance | path

Searched refs:yValues (Results 1 – 2 of 2) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/math/
DStatsTesting.java468 static PairedStats createPairedStatsOf(List<Double> xValues, List<Double> yValues) { in createPairedStatsOf() argument
469 return createFilledPairedStatsAccumulator(xValues, yValues).snapshot(); in createPairedStatsOf()
477 List<Double> xValues, List<Double> yValues) { in createFilledPairedStatsAccumulator() argument
478 checkArgument(xValues.size() == yValues.size()); in createFilledPairedStatsAccumulator()
481 accumulator.add(xValues.get(index), yValues.get(index)); in createFilledPairedStatsAccumulator()
492 List<Double> xValues, List<Double> yValues, int partitionSize) { in createPartitionedFilledPairedStatsAccumulator() argument
493 checkArgument(xValues.size() == yValues.size()); in createPartitionedFilledPairedStatsAccumulator()
497 List<List<Double>> yPartitions = Lists.partition(yValues, partitionSize); in createPartitionedFilledPairedStatsAccumulator()
/external/guava/guava-tests/test/com/google/common/math/
DStatsTesting.java497 static PairedStats createPairedStatsOf(List<Double> xValues, List<Double> yValues) { in createPairedStatsOf() argument
498 return createFilledPairedStatsAccumulator(xValues, yValues).snapshot(); in createPairedStatsOf()
506 List<Double> xValues, List<Double> yValues) { in createFilledPairedStatsAccumulator() argument
507 checkArgument(xValues.size() == yValues.size()); in createFilledPairedStatsAccumulator()
510 accumulator.add(xValues.get(index), yValues.get(index)); in createFilledPairedStatsAccumulator()
521 List<Double> xValues, List<Double> yValues, int partitionSize) { in createPartitionedFilledPairedStatsAccumulator() argument
522 checkArgument(xValues.size() == yValues.size()); in createPartitionedFilledPairedStatsAccumulator()
526 List<List<Double>> yPartitions = Lists.partition(yValues, partitionSize); in createPartitionedFilledPairedStatsAccumulator()