HomeSort by relevance Sort by last modified time
    Searched defs:standardDeviation (Results 1 - 12 of 12) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
UncorrelatedRandomVectorGenerator.java 43 private final double[] standardDeviation;
49 * @param standardDeviation standard deviation for each component
54 double[] standardDeviation,
56 if (mean.length != standardDeviation.length) {
57 throw new DimensionMismatchException(mean.length, standardDeviation.length);
60 this.standardDeviation = standardDeviation.clone();
74 standardDeviation = new double[dimension];
75 Arrays.fill(standardDeviation, 1.0);
86 random[i] = mean[i] + standardDeviation[i] * generator.nextNormalizedDouble()
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
WindowedMean.java 93 public float standardDeviation () {
  /external/deqp/modules/gles31/functional/
es31fSampleVariableTests.cpp 163 const float standardDeviation = deFloatSqrt(variance);
168 m_distanceThreshold = 2 * standardDeviation;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
NormalDistributionImpl.java 53 private double standardDeviation = 1;
122 return standardDeviation;
147 standardDeviation = sd;
172 return FastMath.exp(-x0 * x0 / (2 * standardDeviation * standardDeviation)) / (standardDeviation * SQRT2PI);
186 if (FastMath.abs(dev) > 40 * standardDeviation) {
190 (standardDeviation * FastMath.sqrt(2.0))));
240 return randomData.nextGaussian(mean, standardDeviation);
300 ret = mean - standardDeviation;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 651 double standardDeviation = stats.getStandardDeviation();
657 // z = (x- mean)/standardDeviation
658 standardizedSample[i] = (sample[i] - mean) / standardDeviation;
  /external/ImageMagick/Magick++/lib/
Statistic.cpp 372 double Magick::ChannelStatistics::standardDeviation() const
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
ShotToShotLatency.java 89 double standardDeviation = 0;
120 standardDeviation = Math.sqrt(sigmaOfDiffFromMeanSquared / latencyTimes.size());
128 output.write("Shot to shot latency - standard deviation: " + standardDeviation + "\n");
  /packages/apps/Camera2/tests_camera/src/com/android/camera/stress/
ShotToShotLatency.java 90 double standardDeviation = 0;
121 standardDeviation = Math.sqrt(sigmaOfDiffFromMeanSquared / latencyTimes.size());
129 output.write("Shot to shot latency - standard deviation: " + standardDeviation + "\n");
  /external/deqp/modules/gles2/performance/
es2pDrawCallBatchingTests.cpp 789 double standardDeviation;
802 double standardDeviation = 0.0;
807 standardDeviation += (x - mean) * (x - mean);
810 standardDeviation /= (double)samples.size();
811 standardDeviation = std::sqrt(standardDeviation);
813 double standardErrorOfMean = standardDeviation / std::sqrt((double)samples.size());
818 stats.standardDeviation = standardDeviation;
880 log << TestLog::Message << "Batched samples; Count: " << m_batchedSamplesUs.size() << ", Mean: " << batchedStats.mean << "us, Standard deviation: " << batchedStats.standardDeviation << "us, Standard error of mean: " << batchedStats.standardErrorOfMean << "us(" << (batchedStats.st (…)
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 465 milliseconds