Esempio n. 1
0
 def test_masked_all_like(self):
     # Tests masked_all
     # Standard dtype
     base = array([1, 2], dtype=float)
     test = masked_all_like(base)
     control = array([1, 1], mask=[1, 1], dtype=float)
     assert_equal(test, control)
     # Flexible dtype
     dt = np.dtype({"names": ["a", "b"], "formats": ["f", "f"]})
     base = array([(0, 0), (0, 0)], mask=[(1, 1), (1, 1)], dtype=dt)
     test = masked_all_like(base)
     control = array([(10, 10), (10, 10)], mask=[(1, 1), (1, 1)], dtype=dt)
     assert_equal(test, control)
     # Nested dtype
     dt = np.dtype([("a", "f"), ("b", [("ba", "f"), ("bb", "f")])])
     control = array([(1, (1, 1)), (1, (1, 1))], mask=[(1, (1, 1)), (1, (1, 1))], dtype=dt)
     test = masked_all_like(control)
     assert_equal(test, control)
Esempio n. 2
0
 def test_masked_all_like(self):
     # Tests masked_all
     # Standard dtype
     base = array([1, 2], dtype=float)
     test = masked_all_like(base)
     control = array([1, 1], mask=[1, 1], dtype=float)
     assert_equal(test, control)
     # Flexible dtype
     dt = np.dtype({'names': ['a', 'b'], 'formats': ['f', 'f']})
     base = array([(0, 0), (0, 0)], mask=[(1, 1), (1, 1)], dtype=dt)
     test = masked_all_like(base)
     control = array([(10, 10), (10, 10)], mask=[(1, 1), (1, 1)], dtype=dt)
     assert_equal(test, control)
     # Nested dtype
     dt = np.dtype([('a', 'f'), ('b', [('ba', 'f'), ('bb', 'f')])])
     control = array([(1, (1, 1)), (1, (1, 1))],
                     mask=[(1, (1, 1)), (1, (1, 1))], dtype=dt)
     test = masked_all_like(control)
     assert_equal(test, control)
Esempio n. 3
0
 def test_masked_all_like(self):
     # Tests masked_all
     # Standard dtype
     base = array([1, 2], dtype=float)
     test = masked_all_like(base)
     control = array([1, 1], mask=[1, 1], dtype=float)
     assert_equal(test, control)
     # Flexible dtype
     dt = np.dtype({'names': ['a', 'b'], 'formats': ['f', 'f']})
     base = array([(0, 0), (0, 0)], mask=[(1, 1), (1, 1)], dtype=dt)
     test = masked_all_like(base)
     control = array([(10, 10), (10, 10)], mask=[(1, 1), (1, 1)], dtype=dt)
     assert_equal(test, control)
     # Nested dtype
     dt = np.dtype([('a', 'f'), ('b', [('ba', 'f'), ('bb', 'f')])])
     control = array([(1, (1, 1)), (1, (1, 1))],
                     mask=[(1, (1, 1)), (1, (1, 1))], dtype=dt)
     test = masked_all_like(control)
     assert_equal(test, control)