Searched refs:sample1 (Results 1 - 22 of 22) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
H A DTTest.java53 * differences between corresponding entries in <code>sample1</code> and
61 * @param sample1 array of sample data values
68 double pairedT(double[] sample1, double[] sample2) argument
84 * <code>sample1</code> and <code>sample2.</code></p>
97 * @param sample1 array of sample data values
103 double pairedTTest(double[] sample1, double[] sample2) argument
107 * mean of the paired differences between <code>sample1</code> and
129 * @param sample1 array of sample data values
138 double[] sample1,
205 * @param sample1 arra
137 pairedTTest( double[] sample1, double[] sample2, double alpha) argument
210 homoscedasticT(double[] sample1, double[] sample2) argument
240 t(double[] sample1, double[] sample2) argument
488 tTest(double[] sample1, double[] sample2) argument
523 homoscedasticTTest( double[] sample1, double[] sample2) argument
577 tTest( double[] sample1, double[] sample2, double alpha) argument
633 homoscedasticTTest( double[] sample1, double[] sample2, double alpha) argument
[all...]
H A DTTestImpl.java69 * differences between corresponding entries in <code>sample1</code> and
77 * @param sample1 array of sample data values
84 public double pairedT(double[] sample1, double[] sample2) argument
86 checkSampleData(sample1);
88 double meanDifference = StatUtils.meanDifference(sample1, sample2);
90 StatUtils.varianceDifference(sample1, sample2, meanDifference),
91 sample1.length);
108 * <code>sample1</code> and <code>sample2.</code></p>
121 * @param sample1 array of sample data values
127 public double pairedTTest(double[] sample1, doubl argument
167 pairedTTest(double[] sample1, double[] sample2, double alpha) argument
251 homoscedasticT(double[] sample1, double[] sample2) argument
288 t(double[] sample1, double[] sample2) argument
571 tTest(double[] sample1, double[] sample2) argument
613 homoscedasticTTest(double[] sample1, double[] sample2) argument
675 tTest(double[] sample1, double[] sample2, double alpha) argument
733 homoscedasticTTest(double[] sample1, double[] sample2, double alpha) argument
[all...]
H A DTestUtils.java158 public static double homoscedasticT(double[] sample1, double[] sample2) argument
160 return tTest.homoscedasticT(sample1, sample2);
175 public static boolean homoscedasticTTest(double[] sample1, double[] sample2, argument
178 return tTest. homoscedasticTTest(sample1, sample2, alpha);
184 public static double homoscedasticTTest(double[] sample1, double[] sample2) argument
186 return tTest.homoscedasticTTest(sample1, sample2);
201 public static double pairedT(double[] sample1, double[] sample2) argument
203 return tTest.pairedT(sample1, sample2);
209 public static boolean pairedTTest(double[] sample1, double[] sample2, argument
212 return tTest.pairedTTest(sample1, sample
218 pairedTTest(double[] sample1, double[] sample2) argument
242 t(double[] sample1, double[] sample2) argument
292 tTest(double[] sample1, double[] sample2, double alpha) argument
300 tTest(double[] sample1, double[] sample2) argument
[all...]
/external/google-breakpad/src/testing/gtest/scripts/test/
H A DMakefile51 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h
52 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc
55 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H)
58 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
/external/protobuf/gtest/scripts/test/
H A DMakefile49 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h
50 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc
53 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H)
56 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/test/
H A DMakefile51 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h
52 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc
55 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H)
58 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
/external/google-breakpad/src/testing/gtest/make/
H A DMakefile72 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS)
73 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc
76 $(USER_DIR)/sample1.h $(GTEST_HEADERS)
79 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
/external/protobuf/gtest/make/
H A DMakefile72 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS)
73 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc
76 $(USER_DIR)/sample1.h $(GTEST_HEADERS)
79 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
/external/vulkan-validation-layers/tests/gtest-1.7.0/make/
H A DMakefile74 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS)
75 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc
78 $(USER_DIR)/sample1.h $(GTEST_HEADERS)
81 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dttest.py37 def WelchsTTest(sample1, sample2):
45 sample1: A collection of numbers.
54 if not sample1:
55 raise RuntimeError('Empty sample 1: %s' % list(sample1))
59 stats1 = _MakeSampleStats(sample1)
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DStatUtils.java558 * input arrays -- i.e., sum(sample1[i] - sample2[i]).
560 * @param sample1 the first array
566 public static double sumDifference(final double[] sample1, final double[] sample2) argument
568 int n = sample1.length;
579 result += sample1[i] - sample2[i];
586 * input arrays -- i.e., sum(sample1[i] - sample2[i]) / sample1.length.
588 * @param sample1 the first array
594 public static double meanDifference(final double[] sample1, final double[] sample2) argument
596 return sumDifference(sample1, sample
611 varianceDifference(final double[] sample1, final double[] sample2, double meanDifference) argument
[all...]
/external/bzip2/
H A DMakefile58 ./bzip2 -1 < sample1.ref > sample1.rb2
61 ./bzip2 -d < sample1.bz2 > sample1.tst
64 cmp sample1.bz2 sample1.rb2
67 cmp sample1.tst sample1.ref
113 sample1.rb2 sample2.rb2 sample3.rb2 \
114 sample1
[all...]
/external/v8/test/cctest/
H A Dtest-profile-generator.cc359 // -> aaa - sample1
362 TickSample sample1; local
363 sample1.pc = ToAddress(0x1600);
364 sample1.tos = ToAddress(0x1500);
365 sample1.stack[0] = ToAddress(0x1510);
366 sample1.frames_count = 1;
367 generator.RecordTickSample(sample1);
430 // -> aaa #3 - sample1
433 TickSample sample1; local
434 sample1
483 TickSample sample1; local
[all...]
/external/google-breakpad/src/testing/gtest/
H A DCMakeLists.txt83 cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc)
87 cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc)
/external/vulkan-validation-layers/tests/gtest-1.7.0/
H A DCMakeLists.txt83 cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc)
87 cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc)
/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp677 const char *sample1 = "abc\xdf\xbf"; local
681 if(convsample_20_didSubstitute(sample1))
835 const char *sample1 = "abc\xdf\xbf"; local
838 if(convsample_21_didSubstitute(sample1))
/external/protobuf/gtest/
H A DCMakeLists.txt185 cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc)
189 cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc)
/external/skia/src/codec/
H A DSkSwizzler.cpp23 static void sample1(void* dst, const uint8_t* src, int width, int bpp, int deltaSrc, int offset, function
731 proc = &sample1;
745 proc = &sample1;
873 proc = &sample1;
/external/opencv/ml/src/
H A Dmlrtrees.cpp514 float CvRTrees::get_proximity( const CvMat* sample1, const CvMat* sample2, argument
525 result += trees[i]->predict( sample1, missing1 ) ==
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp616 FX_DWORD sample1 = local
619 ((FX_FLOAT)sample1 - (FX_FLOAT)sample);
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingShaderAccessTests.cpp3578 const tcu::Vec4 sample1 = (!doFetch) ? (green) : (m_images.fetchImageValue(1)); local
3583 drawQuadrantReferenceResult(reference.getAccess(), sample0, sample1, sample2, sample3);
4599 const tcu::Vec4 sample1 = (!doFetch) ? (green) : (m_images.fetchSampleValue(1)); local
4605 drawQuadrantReferenceResult(reference.getAccess(), sample0, sample1, sample2, sample3);
5811 const tcu::Vec4 sample1 = (!doFetch) ? (green) : (m_texelBuffers.fetchTexelValue(1)); local
5816 drawQuadrantReferenceResult(reference.getAccess(), sample0, sample1, sample2, sample3);
/external/opencv/ml/include/
H A Dml.h984 virtual float get_proximity( const CvMat* sample1, const CvMat* sample2,

Completed in 616 milliseconds