summaryrefslogtreecommitdiff
path: root/numpy/ma/tests
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2009-01-09 20:18:12 +0000
committerpierregm <pierregm@localhost>2009-01-09 20:18:12 +0000
commit7dfb0e620c2545c7860c05a66abc1b2429f8e415 (patch)
treeb48944d2761213801d36496f92a14a7928270ebd /numpy/ma/tests
parentfbf902ca2bf3f119b4d7b77833e4a3bc70c5101e (diff)
downloadnumpy-7dfb0e620c2545c7860c05a66abc1b2429f8e415.tar.gz
* Added flatten_structured_arrays
* Fixed _get_recordarray for nested structures
Diffstat (limited to 'numpy/ma/tests')
-rw-r--r--numpy/ma/tests/test_core.py45
1 files changed, 44 insertions, 1 deletions
diff --git a/numpy/ma/tests/test_core.py b/numpy/ma/tests/test_core.py
index 9ac4342e6..7f17b5f6e 100644
--- a/numpy/ma/tests/test_core.py
+++ b/numpy/ma/tests/test_core.py
@@ -482,7 +482,11 @@ class TestMaskedArray(TestCase):
test = a.filled(0)
control = np.array([(1, (0, 1)), (2, (2, 0))], dtype=ndtype)
assert_equal(test, control)
-
+ #
+ test = a['B'].filled(0)
+ control = np.array([(0, 1), (2, 0)], dtype=a['B'].dtype)
+ assert_equal(test, control)
+
def test_optinfo_propagation(self):
"Checks that _optinfo dictionary isn't back-propagated"
@@ -503,6 +507,45 @@ class TestMaskedArray(TestCase):
control = "[(--, (2, --)) (4, (--, 6.0))]"
assert_equal(str(test), control)
+
+ def test_flatten_structured_array(self):
+ "Test flatten_structured_array on arrays"
+ # On ndarray
+ ndtype = [('a', int), ('b', float)]
+ a = np.array([(1, 1), (2, 2)], dtype=ndtype)
+ test = flatten_structured_array(a)
+ control = np.array([[1., 1.], [2., 2.]], dtype=np.float)
+ assert_equal(test, control)
+ assert_equal(test.dtype, control.dtype)
+ # On masked_array
+ a = ma.array([(1, 1), (2, 2)], mask=[(0, 1), (1, 0)], dtype=ndtype)
+ test = flatten_structured_array(a)
+ control = ma.array([[1., 1.], [2., 2.]],
+ mask=[[0, 1], [1, 0]], dtype=np.float)
+ assert_equal(test, control)
+ assert_equal(test.dtype, control.dtype)
+ assert_equal(test.mask, control.mask)
+ # On masked array with nested structure
+ ndtype = [('a', int), ('b', [('ba', int), ('bb', float)])]
+ a = ma.array([(1, (1, 1.1)), (2, (2, 2.2))],
+ mask=[(0, (1, 0)), (1, (0, 1))], dtype=ndtype)
+ test = flatten_structured_array(a)
+ control = ma.array([[1., 1., 1.1], [2., 2., 2.2]],
+ mask=[[0, 1, 0], [1, 0, 1]], dtype=np.float)
+ assert_equal(test, control)
+ assert_equal(test.dtype, control.dtype)
+ assert_equal(test.mask, control.mask)
+ # Keeping the initial shape
+ ndtype = [('a', int), ('b', float)]
+ a = np.array([[(1, 1),], [(2, 2),]], dtype=ndtype)
+ test = flatten_structured_array(a)
+ control = np.array([[[1., 1.],], [[2., 2.],]], dtype=np.float)
+ assert_equal(test, control)
+ assert_equal(test.dtype, control.dtype)
+
+
+
+
#------------------------------------------------------------------------------
class TestMaskedArrayArithmetic(TestCase):