diff options
author | pierregm <pierregm@localhost> | 2008-08-26 22:34:13 +0000 |
---|---|---|
committer | pierregm <pierregm@localhost> | 2008-08-26 22:34:13 +0000 |
commit | edc1465f70cf97c06c374b77747d8485fbc8ca24 (patch) | |
tree | cddefd2216a0bbb03c382641de78b5165a424bb2 /numpy | |
parent | 62e4b61ba175992d1e46dfb2fd991b3704411102 (diff) | |
download | numpy-edc1465f70cf97c06c374b77747d8485fbc8ca24.tar.gz |
* fixing botched previous commit
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ma/core.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index ba90d180c..efda5ee85 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -3865,16 +3865,9 @@ def inner(a, b): if len(fb.shape) == 0: fb.shape = (1,) return np.inner(fa, fb).view(MaskedArray) -<<<<<<< .mine inner.__doc__ = doc_note(np.inner.__doc__, "Masked values are replaced by 0.") -======= - ->>>>>>> .r5706 innerproduct = inner -if np.inner.__doc__ is not None : - notes = doc_note("Masked values are replaced by 0.") - inner.__doc__ = np.inner.__doc__ + notes def outer(a, b): "maskedarray version of the numpy function." @@ -3889,16 +3882,9 @@ def outer(a, b): mb = getmaskarray(b) m = make_mask(1-np.outer(1-ma, 1-mb), copy=0) return masked_array(d, mask=m) -<<<<<<< .mine outer.__doc__ = doc_note(np.outer.__doc__, "Masked values are replaced by 0.") -======= - ->>>>>>> .r5706 outerproduct = outer -if np.outer.__doc__ is not None : - notes = doc_note("Masked values are replaced by 0.") - outer.__doc__ = np.outer.__doc__ + notes def allequal (a, b, fill_value=True): """Return True if all entries of a and b are equal, using |