Searched defs:standardDeviation (Results 1 - 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DUncorrelatedRandomVectorGenerator.java43 private final double[] standardDeviation; field in class:UncorrelatedRandomVectorGenerator
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[
53 UncorrelatedRandomVectorGenerator(double[] mean, double[] standardDeviation, NormalizedRandomGenerator generator) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DNormalDistributionImpl.java53 private double standardDeviation = 1; field in class:NormalDistributionImpl
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/deqp/modules/gles31/functional/
H A Des31fSampleVariableTests.cpp158 const float standardDeviation = deFloatSqrt(variance); local
163 m_distanceThreshold = 2 * standardDeviation;
/external/deqp/modules/gles2/performance/
H A Des2pDrawCallBatchingTests.cpp789 double standardDeviation; member in struct:deqp::gles2::Performance::__anon3249::Statistics
802 double standardDeviation = 0.0; local
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 << "u
[all...]
/external/vogar/lib/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/util/ ...

Completed in 1156 milliseconds