diff options
author | pierregm <pierregm@localhost> | 2008-05-29 02:31:28 +0000 |
---|---|---|
committer | pierregm <pierregm@localhost> | 2008-05-29 02:31:28 +0000 |
commit | 7e297641b0d16af657b333851a542f4d15cbd681 (patch) | |
tree | 68a02acfe027227a9d6d7c59b846457f9c8caa4f /numpy/ma/extras.py | |
parent | 47883f921adb249e8c58b03e375a8dc347cbbedd (diff) | |
download | numpy-7e297641b0d16af657b333851a542f4d15cbd681.tar.gz |
mrecords : Make sure a field shares its mask with the whole array
mrecords : IMPORTANT : the mask of a field is no longer set to nomask when it's full of False, which simplifies masking specific fields.
extras : Reorganized personal comments
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index 3032a462b..2ab2eae93 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -567,7 +567,7 @@ def dot(a,b, strict=False): The first argument is not conjugated. """ - #TODO: Works only with 2D arrays. There should be a way to get it to run with higher dimension + #!!!: Works only with 2D arrays. There should be a way to get it to run with higher dimension if strict and (a.ndim == 2) and (b.ndim == 2): a = mask_rows(a) b = mask_cols(b) |