HomeSort by relevance Sort by last modified time
    Searched refs:moment (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 17 package org.apache.commons.math.stat.descriptive.moment;
52 /**Fourth Moment on which this statistic is based */
53 protected FourthMoment moment; field in class:Kurtosis
68 moment = new FourthMoment();
72 * Construct a Kurtosis from an external moment
74 * @param m4 external Moment
78 this.moment = m4;
97 moment.increment(d);
110 if (moment.getN() > 3) {
111 double variance = moment.m2 / (moment.n - 1)
    [all...]
Skewness.java 17 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.m2 / (moment.n - 1)
    [all...]
Mean.java 17 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();
83 * Constructs a Mean with an External Moment.
85 * @param m1 the moment
88 this.moment = m1;
108 moment.increment(d);
118 moment.clear();
127 return moment.m1
    [all...]
Variance.java 17 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.increment(d)
    [all...]
SecondMoment.java 17 package org.apache.commons.math.stat.descriptive.moment;
22 * Computes a statistic related to the Second Central Moment. Specifically,
50 /** second moment of values that have been added */
FirstMoment.java 17 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,
FourthMoment.java 17 package org.apache.commons.math.stat.descriptive.moment;
22 * Computes a statistic related to the Fourth Central Moment. Specifically,
58 /** fourth moment of values that have been added */
ThirdMoment.java 17 package org.apache.commons.math.stat.descriptive.moment;
23 * Computes a statistic related to the Third Central Moment. Specifically,
52 /** third moment of values that have been added */
57 * moment, normalized by previous sample size. Retained to prevent
VectorialMean.java 17 package org.apache.commons.math.stat.descriptive.moment;
  /external/libutf/
Android.mk 27 # We only build the static library at the moment.
  /external/llvm/test/MC/Mips/mips3/
invalid-mips4-wrong-error.s 2 # error message at the moment.
  /external/llvm/test/MC/Mips/mips32r6/
invalid-mips2-wrong-error.s 2 # error message at the moment.
invalid-mips4-wrong-error.s 2 # error message at the moment.
invalid-mips32-wrong-error.s 2 # error message at the moment.
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips4-wrong-error.s 2 # error message at the moment.
invalid-mips32-wrong-error.s 2 # error message at the moment.
  /external/opencv3/modules/imgproc/src/
moments.cpp 586 IppiMomentState_64f * moment = NULL; local
591 if (ippiMomentInitAlloc_64f(&moment, ippAlgHintAccurate) >= 0)
601 if (ippFunc(mat.data, (int)mat.step, roi, moment) >= 0)
604 ippiGetSpatialMoment_64f(moment, 0, 0, 0, point, &m.m00);
605 ippiGetSpatialMoment_64f(moment, 1, 0, 0, point, &m.m10);
606 ippiGetSpatialMoment_64f(moment, 0, 1, 0, point, &m.m01);
608 ippiGetSpatialMoment_64f(moment, 2, 0, 0, point, &m.m20);
609 ippiGetSpatialMoment_64f(moment, 1, 1, 0, point, &m.m11);
610 ippiGetSpatialMoment_64f(moment, 0, 2, 0, point, &m.m02);
612 ippiGetSpatialMoment_64f(moment, 3, 0, 0, point, &m.m30)
    [all...]
  /external/llvm/test/MC/Mips/mips1/
invalid-mips2-wrong-error.s 2 # error message at the moment.
invalid-mips3-wrong-error.s 2 # error message at the moment.
  /external/llvm/test/MC/Mips/mips2/
invalid-mips4-wrong-error.s 2 # error message at the moment.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DescriptiveStatistics.java 25 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;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Util.java 4 import org.apache.commons.math.stat.descriptive.moment.Mean;
5 import org.apache.commons.math.stat.descriptive.moment.StandardDeviation;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 23 import org.apache.commons.math.stat.descriptive.moment.Mean;
24 import org.apache.commons.math.stat.descriptive.moment.Variance;
  /external/llvm/test/Bindings/OCaml/
bitwriter.ml 10 (* Note that this takes a moment to link, so it's best to keep the number of
  /external/llvm/test/MC/Mips/
macro-la-bad.s 20 # moment.

Completed in 220 milliseconds

1 2 3 4 5