HomeSort by relevance Sort by last modified time
    Searched refs:chi2 (Results 1 - 4 of 4) sorted by null

  /external/skia/tests/
RandomTest.cpp 40 double chi2 = 0.0; local
43 chi2 += delta*delta/e;
46 return (kChiSqMin256 < chi2 && chi2 < kChiSqMax256);
  /external/opencv3/modules/core/test/
test_rand.cpp 70 double chi2 = 0;
76 chi2 += (a - b)*(a - b)/(a + b);
78 realval = chi2;
  /external/chromium-trace/catapult/experimental/statistical_analysis/
results_stats.py 178 p_value = stats.chi2.sf(test_statistic, 2 * len(p_values))
  /external/opencv3/modules/ml/src/
svm.cpp 274 /// Exponential chi2 kernel
284 double chi2 = 0; local
289 /// if devisor == 0, the Chi2 distance would be zero,
293 chi2 += d*d/devisor;
296 results[j] = (Qfloat) (gamma*chi2);
319 case SVM::CHI2:
    [all...]

Completed in 746 milliseconds