Home
last modified time | relevance | path

Searched refs:getMean (Results 1 – 25 of 32) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DTTestImpl.java214 return t(sampleStats.getMean(), mu, sampleStats.getVariance(), in t()
333 return t(sampleStats1.getMean(), sampleStats2.getMean(), in t()
378 return homoscedasticT(sampleStats1.getMean(), sampleStats2.getMean(), in homoscedasticT()
488 return tTest(sampleStats.getMean(), mu, sampleStats.getVariance(), in tTest()
778 return tTest(sampleStats1.getMean(), sampleStats2.getMean(), sampleStats1.getVariance(), in tTest()
821 return homoscedasticTTest(sampleStats1.getMean(), in homoscedasticTTest()
822 sampleStats2.getMean(), sampleStats1.getVariance(), in homoscedasticTTest()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DStatisticalSummaryValues.java84 public double getMean() { in getMean() method in StatisticalSummaryValues
141 MathUtils.equalsIncludingNaN(stat.getMean(), getMean()) && in equals()
156 result = result * 31 + MathUtils.hash(getMean()); in hashCode()
178 outBuffer.append("mean: ").append(getMean()).append(endl); in toString()
DAggregateSummaryStatistics.java145 public double getMean() { in getMean() method in AggregateSummaryStatistics
147 return statistics.getMean(); in getMean()
267 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary()
315 double mean = current.getMean(); in aggregate()
328 final double meanDiff = current.getMean() - mean; in aggregate()
DSummaryStatistics.java139 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary()
202 public double getMean() { in getMean() method in SummaryStatistics
318 outBuffer.append("mean: ").append(getMean()).append(endl); in toString()
367 MathUtils.equalsIncludingNaN(stat.getMean(), getMean()) && in equals()
384 result = result * 31 + MathUtils.hash(getMean()); in hashCode()
DMultivariateSummaryStatistics.java232 public double[] getMean() { in getMean() method in MultivariateSummaryStatistics
315 append(outBuffer, getMean(), "mean: ", separator, suffix); in toString()
378 MathUtils.equalsIncludingNaN(stat.getMean(), getMean()) && in equals()
397 result = result * 31 + MathUtils.hash(getMean()); in hashCode()
DSynchronizedSummaryStatistics.java97 public synchronized double getMean() { in getMean() method in SynchronizedSummaryStatistics
98 return super.getMean(); in getMean()
DSynchronizedMultivariateSummaryStatistics.java104 public synchronized double[] getMean() { in getMean() method in SynchronizedMultivariateSummaryStatistics
105 return super.getMean(); in getMean()
DStatisticalSummary.java31 double getMean(); in getMean() method
DStatisticalMultivariateSummary.java42 double[] getMean(); in getMean() method
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
DExponentialDistributionImpl.java97 public double getMean() { in getMean() method in ExponentialDistributionImpl
302 return getMean(); in getNumericalMean()
315 final double m = getMean(); in getNumericalVariance()
DPoissonDistributionImpl.java145 public double getMean() { in getMean() method in PoissonDistributionImpl
340 return getMean(); in getNumericalVariance()
DExponentialDistribution.java45 double getMean(); in getMean() method
DPoissonDistribution.java41 double getMean(); in getMean() method
DNormalDistribution.java38 double getMean(); in getMean() method
/external/icu/icu4j/perf-tests/
Dperftests.pl93 my $testResult = $t->getMean();
103 my $baseResult = $b->getMean();
137 my $testResult = $t->getMean();
147 my $baseResult = $b->getMean();
Dconverterperf.pl128 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
136 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
143 my $mean = $r->getMean() - 1;
Ddecimalformatperf.pl110 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
118 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
125 my $mean = $r->getMean() - 1;
Ducharacterperf.pl112 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
120 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
127 my $mean = $r->getMean() - 1;
Dnormperf.pl164 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
172 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
179 my $mean = $r->getMean() - 1;
Dunicodesetperf.pl102 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
110 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
117 my $mean = $r->getMean() - 1;
Ddateformatperf.pl115 print HTML "<TD>", formatSeconds(4, $t->getMean(), $t->getError);
123 print HTML "<TD>", formatSeconds(4, $b->getMean(), $t->getError);
130 my $mean = $r->getMean() - 1;
DDataset.pm58 sub getMean { subroutine
/external/icu/icu4c/source/test/perf/perldriver/
DOutput.pm54 my $mean = $value->getMean;
309 …print HTML "<td class=\"sepvalue\">".formatNumber(4, $mult, $ds->getMean)."</td><td class=\"sepval…
/external/icu/icu4j/perf-tests/perldriver/
DOutput.pm52 my $mean = $value->getMean;
307 …print HTML "<td class=\"sepvalue\">".formatNumber(4, $mult, $ds->getMean)."</td><td class=\"sepval…
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DEmpiricalDistributionImpl.java388 (stats.getMean(),stats.getStandardDeviation()); in getNextValue()
390 return stats.getMean(); // only one obs in bin in getNextValue()

12