/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
D | ChiSquareTestImpl.java | 66 public double chiSquare(double[] expected, long[] observed) in chiSquare() argument 72 if (expected.length != observed.length) { in chiSquare() 74 LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, expected.length, observed.length); in chiSquare() 77 checkNonNegative(observed); in chiSquare() 80 for (int i = 0; i < observed.length; i++) { in chiSquare() 82 sumObserved += observed[i]; in chiSquare() 91 for (int i = 0; i < observed.length; i++) { in chiSquare() 93 final double dev = observed[i] - ratio * expected[i]; in chiSquare() 96 final double dev = observed[i] - expected[i]; in chiSquare() 115 public double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument [all …]
|
D | TestUtils.java | 226 public static double t(double mu, double[] observed) in t() argument 228 return tTest.t(mu, observed); in t() 326 public static double chiSquare(double[] expected, long[] observed) in chiSquare() argument 328 return chiSquareTest.chiSquare(expected, observed); in chiSquare() 342 public static boolean chiSquareTest(double[] expected, long[] observed, in chiSquareTest() argument 345 return chiSquareTest.chiSquareTest(expected, observed, alpha); in chiSquareTest() 351 public static double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument 353 return chiSquareTest.chiSquareTest(expected, observed); in chiSquareTest()
|
D | ChiSquareTest.java | 54 double chiSquare(double[] expected, long[] observed) in chiSquare() argument 86 double chiSquareTest(double[] expected, long[] observed) in chiSquareTest() argument 121 boolean chiSquareTest(double[] expected, long[] observed, double alpha) in chiSquareTest() argument
|
D | TTestImpl.java | 188 public double t(double mu, double[] observed) in t() argument 190 checkSampleData(observed); in t() 191 return t(StatUtils.mean(observed), mu, StatUtils.variance(observed), in t() 192 observed.length); in t()
|
D | TTest.java | 157 double t(double mu, double[] observed) in t() argument
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/ |
D | CurveFitter.java | 92 public void addObservedPoint(WeightedObservedPoint observed) { in addObservedPoint() argument 93 observations.add(observed); in addObservedPoint() 171 for (WeightedObservedPoint observed : observations) { in jacobian() 172 jacobian[i++] = f.gradient(observed.getX(), point); in jacobian() 187 for (WeightedObservedPoint observed : observations) { in value() 188 values[i++] = f.value(observed.getX(), point); in value()
|
/external/tensorflow/tensorflow/contrib/timeseries/examples/ |
D | predict_test.py | 35 (times, observed, all_times, mean, upper_limit, lower_limit 41 self.assertAllEqual([500], observed.shape) 48 (times, observed, all_times, mean, 50 self.assertAllEqual(times.shape, observed.shape)
|
D | known_anomaly_test.py | 29 (times, observed, all_times, mean, upper_limit, lower_limit, 38 self.assertAllEqual(times.shape, observed.shape) 41 (times, observed, all_times, mean, upper_limit, lower_limit, 48 self.assertAllEqual([200], observed.shape)
|
D | predict.py | 91 observed = evaluation["observed"][0, :, 0] 99 return times, observed, all_times, mean, upper_limit, lower_limit 102 def make_plot(name, training_times, observed, all_times, mean, argument 106 pyplot.plot(training_times, observed, "b", label="training series")
|
D | known_anomaly.py | 128 observed = evaluation["observed"][0, :, 0] 144 return (times, observed, all_times, mean, upper_limit, lower_limit, 148 def make_plot(name, training_times, observed, all_times, mean, argument 152 pyplot.plot(training_times, observed, "b", label="training series")
|
D | lstm.py | 234 observed = evaluation["observed"][0, :, :] 276 return times, observed, all_times, predicted_mean
|
/external/libchrome/base/files/ |
D | file_path_unittest.cc | 147 FilePath observed = input.DirName(); in TEST_F() local 148 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F() 234 FilePath observed = input.BaseName(); in TEST_F() local 235 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F() 391 FilePath observed = input.StripTrailingSeparators(); in TEST_F() local 392 EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << in TEST_F() 459 bool observed = input.IsAbsolute(); in TEST_F() local 460 EXPECT_EQ(cases[i].expected, observed) << in TEST_F() 508 FilePath::StringType observed; in TEST_F() local 510 observed.append(FILE_PATH_LITERAL("|"), 1); in TEST_F() [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | StripedTest.java | 171 Set<Object> observed = Sets.newIdentityHashSet(); // for the sake of weakly referenced locks. in assertBasicInvariants() local 177 observed.add(object); in assertBasicInvariants() 179 assertTrue("All stripes observed", observed.size() == striped.size()); in assertBasicInvariants() 183 assertTrue(observed.contains(striped.get(new Object()))); in assertBasicInvariants()
|
/external/grpc-grpc-java/context/src/test/java/io/grpc/ |
D | ContextTest.java | 82 private Context observed; field in ContextTest 86 observed = Context.current(); 274 private final AtomicReference<Context> observed; in notifyListenersOnCancel() field in ContextTest.SetContextCancellationListener 276 public SetContextCancellationListener(AtomicReference<Context> observed) { in notifyListenersOnCancel() argument 277 this.observed = observed; in notifyListenersOnCancel() 282 observed.set(context); in notifyListenersOnCancel() 459 assertSame(base, observed); in testWrapRunnable() 463 assertSame(current, observed); in testWrapRunnable() 499 assertSame(base, observed); in testWrapCallable() 503 assertSame(current, observed); in testWrapCallable() [all …]
|
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/ |
D | HpackDecodeTestBase.java | 85 String message, List<Header> expected, List<Header> observed) { in assertSetEquals() argument 86 assertEquals(message, new LinkedHashSet<>(expected), new LinkedHashSet<>(observed)); in assertSetEquals()
|
/external/python/cpython3/Lib/test/ |
D | test_shlex.py | 246 observed = [] 255 observed.append((t, tt)) 256 self.assertEqual(observed, expected)
|
/external/icu/icu4c/source/data/translit/ |
D | es_FONIPA_zh.txt | 40 # it was <u> plus <ai>. This is not borne out by the observed data, which 79 bwin } $not_vowel → 布因 ; # Nonstandard, but fits observed data. 180 gwan } [$] → 古安 ; # Nonstandard, but fits observed data. 296 mwin } $not_vowel → 穆因 ; # Nonstandard, but fits observed data. 427 # entirely from the observed data. They apply mostly to native toponyms
|
/external/nos/test/system-test-harness/src/ |
D | faceauth_tests.cc | 288 const fa_result_t observed = in IsProfileLocked() local 291 MakeResult(session_id, FACEAUTH_SUCCESS, 0, observed.output.data.second); in IsProfileLocked() 292 EXPECT_RESULT_EQ(expected, observed); in IsProfileLocked() 293 return observed.output.data.second; in IsProfileLocked()
|
/external/autotest/client/site_tests/network_DhcpFQDN/ |
D | control | 12 accepted. It was observed that this caused a crash in dhcpcd in some
|
/external/tensorflow/tensorflow/python/framework/ |
D | op_def_library.py | 485 observed = ", ".join(observed_types) 489 (input_name, op_type_name, observed)) 540 observed = ops.internal_convert_to_tensor( 547 (input_name, op_type_name, observed))
|
/external/cros/system_api/dbus/power_manager/ |
D | policy.proto | 110 // activity is observed for |idle_ms|. 136 // observed while the screen is dimmed or soon after it is turned off. 145 // has been observed. After activity is seen, the inactivity timeout
|
/external/autotest/client/tests/tsc/src/ |
D | README | 10 report the observed difference in TSC values between each pair of CPUs.
|
/external/autotest/client/site_tests/video_VideoDecodeAccelerator/ |
D | control.vp9_2 | 29 # The FPS expectations here are lower than observed in most runs to keep
|
D | control.vp9 | 29 # The FPS expectations here are lower than observed in most runs to keep
|
D | control.h264 | 30 # The FPS expectations here are lower than observed in most runs to keep
|