Searched refs:moment (Results 1 - 25 of 64) sorted by relevance

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DKurtosis.java17 package org.apache.commons.math.stat.descriptive.moment;
53 protected FourthMoment moment; field in class:Kurtosis
68 moment = new FourthMoment();
72 * Construct a Kurtosis from an external moment
78 this.moment = m4;
97 moment.increment(d);
110 if (moment.getN() > 3) {
111 double variance = moment.m2 / (moment.n - 1);
112 if (moment
[all...]
H A DSkewness.java17 package org.apache.commons.math.stat.descriptive.moment;
46 /** Third moment on which this statistic is based */
47 protected ThirdMoment moment = null; field in class:Skewness
62 moment = new ThirdMoment();
66 * Constructs a Skewness with an external moment
67 * @param m3 external moment
71 this.moment = m3;
90 moment.increment(d);
104 if (moment.n < 3) {
107 double variance = moment
[all...]
H A DMean.java17 package org.apache.commons.math.stat.descriptive.moment;
65 /** First moment on which this statistic is based. */
66 protected FirstMoment moment; field in class:Mean
79 moment = new FirstMoment();
85 * @param m1 the moment
88 this.moment = m1;
108 moment.increment(d);
118 moment.clear();
127 return moment.m1;
134 return moment
[all...]
H A DVariance.java17 package org.apache.commons.math.stat.descriptive.moment;
74 protected SecondMoment moment = null; field in class:Variance
78 * the second moment, this evaluates to false when this Variance is
95 moment = new SecondMoment();
99 * Constructs a Variance based on an external second moment.
106 this.moment = m2;
118 moment = new SecondMoment();
124 * property and the supplied external second moment.
133 this.moment = m2;
159 moment
[all...]
H A DSecondMoment.java17 package org.apache.commons.math.stat.descriptive.moment;
50 /** second moment of values that have been added */
H A DFirstMoment.java17 package org.apache.commons.math.stat.descriptive.moment;
23 * Computes the first moment (arithmetic mean). Uses the definitional formula:
57 /** First moment of values that have been added */
61 * Deviation of most recently added value from previous first moment.
67 * Deviation of most recently added value from previous first moment,
H A DFourthMoment.java17 package org.apache.commons.math.stat.descriptive.moment;
58 /** fourth moment of values that have been added */
H A DThirdMoment.java17 package org.apache.commons.math.stat.descriptive.moment;
52 /** third moment of values that have been added */
57 * moment, normalized by previous sample size. Retained to prevent
H A DVectorialMean.java17 package org.apache.commons.math.stat.descriptive.moment;
/external/llvm/test/MC/Mips/mips3/
H A Dinvalid-mips4-wrong-error.s2 # error message at the moment.
/external/llvm/test/MC/Mips/mips32r6/
H A Dinvalid-mips2-wrong-error.s2 # error message at the moment.
H A Dinvalid-mips4-wrong-error.s2 # error message at the moment.
H A Dinvalid-mips32-wrong-error.s2 # error message at the moment.
/external/llvm/test/MC/Mips/mips64r6/
H A Dinvalid-mips4-wrong-error.s2 # error message at the moment.
H A Dinvalid-mips32-wrong-error.s2 # error message at the moment.
/external/tensorflow/tensorflow/python/kernel_tests/random/
H A Drandom_poisson_test.py51 # TODO(srvasude): Factor this out along with the corresponding moment testing
73 moment = 1.
78 moments[i] += moment
80 moment *= x[index]
86 moments_i_mean = g.moment(i)
87 moments_i_squared = g.moment(2 * i)
89 moments_i_mean = pow(g.moment(1), i)
90 moments_i_squared = pow(g.moment(2), i)
94 # It takes i multiplications to calculate one i-th moment.
H A Drandom_gamma_test.py69 # Check the given array of samples matches the given theoretical moment
75 # 0 means the n-th moment of each sample
98 moment = 1.
103 moments[i] += moment
105 moment *= x[index]
111 moments_i_mean = g.moment(i)
112 moments_i_squared = g.moment(2 * i)
114 moments_i_mean = pow(g.moment(1), i)
115 moments_i_squared = pow(g.moment(2), i)
116 # Calculate moment varianc
[all...]
/external/llvm/test/MC/Mips/mips2/
H A Dinvalid-mips4-wrong-error.s2 # error message at the moment.
H A Dinvalid-mips3-wrong-error.s2 # error message at the moment.
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DDescriptiveStatistics.java25 import org.apache.commons.math.stat.descriptive.moment.GeometricMean;
26 import org.apache.commons.math.stat.descriptive.moment.Kurtosis;
27 import org.apache.commons.math.stat.descriptive.moment.Mean;
28 import org.apache.commons.math.stat.descriptive.moment.Skewness;
29 import org.apache.commons.math.stat.descriptive.moment.Variance;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
H A DCovariance.java23 import org.apache.commons.math.stat.descriptive.moment.Mean;
24 import org.apache.commons.math.stat.descriptive.moment.Variance;
/external/llvm/test/Bindings/OCaml/
H A Dbitwriter.ml10 (* Note that this takes a moment to link, so it's best to keep the number of
/external/llvm/test/MC/Mips/
H A Dmacro-la-bad.s20 # moment.
/external/llvm/test/MC/Mips/mips1/
H A Dinvalid-mips2-wrong-error.s2 # error message at the moment.
H A Dinvalid-mips3-wrong-error.s2 # error message at the moment.

Completed in 740 milliseconds

123