Searched defs:yArray (Results 1 - 9 of 9) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
H A DCovariance.java214 * @param yArray second data array
220 public double covariance(final double[] xArray, final double[] yArray, boolean biasCorrected) argument
225 if (length != yArray.length) {
227 LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, length, yArray.length);
233 double yMean = mean.evaluate(yArray);
236 double yDev = yArray[i] - yMean;
250 * @param yArray second data array
255 public double covariance(final double[] xArray, final double[] yArray) argument
257 return covariance(xArray, yArray, true);
H A DSpearmansCorrelation.java142 * @param yArray second data array
147 public double correlation(final double[] xArray, final double[] yArray) argument
149 if (xArray.length != yArray.length) {
151 LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, xArray.length, yArray.length);
157 rankingAlgorithm.rank(yArray));
H A DPearsonsCorrelation.java223 * @param yArray second data array
228 public double correlation(final double[] xArray, final double[] yArray) throws IllegalArgumentException { argument
230 if (xArray.length != yArray.length) {
231 throw new DimensionMismatchException(xArray.length, yArray.length);
237 regression.addData(xArray[i], yArray[i]);
/external/skia/src/core/
H A DSkAAClip.cpp805 SkTDArray<YOffset> yArray; local
808 yArray.setReserve(SkMin32(bounds.height(), 1024));
830 currY = yArray.append();
836 currY = yArray.append();
855 RunHead* head = RunHead::Alloc(yArray.count(), xArray.bytes());
856 memcpy(head->yoffsets(), yArray.begin(), yArray.bytes());
/external/skqp/src/core/
H A DSkAAClip.cpp805 SkTDArray<YOffset> yArray; local
808 yArray.setReserve(SkMin32(bounds.height(), 1024));
830 currY = yArray.append();
836 currY = yArray.append();
855 RunHead* head = RunHead::Alloc(yArray.count(), xArray.bytes());
856 memcpy(head->yoffsets(), yArray.begin(), yArray.bytes());
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 472 milliseconds