OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yArray
(Results
1 - 6
of
6
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
SpearmansCorrelation.java
142
* @param
yArray
second data array
147
public double correlation(final double[] xArray, final double[]
yArray
)
149
if (xArray.length !=
yArray
.length) {
151
LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, xArray.length,
yArray
.length);
157
rankingAlgorithm.rank(
yArray
));
Covariance.java
214
* @param
yArray
second data array
220
public double covariance(final double[] xArray, final double[]
yArray
, boolean biasCorrected)
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
)
257
return covariance(xArray,
yArray
, true);
PearsonsCorrelation.java
223
* @param
yArray
second data array
228
public double correlation(final double[] xArray, final double[]
yArray
) throws IllegalArgumentException {
230
if (xArray.length !=
yArray
.length) {
231
throw new DimensionMismatchException(xArray.length,
yArray
.length);
237
regression.addData(xArray[i],
yArray
[i]);
/cts/tests/tests/animation/src/android/animation/cts/
PropertyValuesHolderTest.java
91
float[]
yArray
= getYPosition();
92
assertResults(
yArray
, mStartY, mEndY);
212
float[]
yArray
= getYPosition();
213
assertResults(
yArray
, mStartY, mEndY);
228
float[]
yArray
= getYPosition();
229
assertResults(
yArray
, mStartY, mEndY);
291
float[]
yArray
= getYPosition();
292
assertResults(
yArray
, mStartY, mEndY);
390
float[]
yArray
= new float[3];
393
yArray
[i] = y
[
all
...]
/external/skia/src/core/
SkAAClip.cpp
804
SkTDArray<YOffset>
yArray
;
807
yArray
.setReserve(SkMin32(bounds.height(), 1024));
829
currY =
yArray
.append();
835
currY =
yArray
.append();
854
RunHead* head = RunHead::Alloc(
yArray
.count(), xArray.bytes());
855
memcpy(head->yoffsets(),
yArray
.begin(),
yArray
.bytes());
[
all
...]
/cts/tests/video/src/android/video/cts/
VideoEncoderDecoderTest.java
[
all
...]
Completed in 94 milliseconds