summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorahaldane <ealloc@gmail.com>2016-10-20 18:07:17 -0400
committerGitHub <noreply@github.com>2016-10-20 18:07:17 -0400
commit8a9b04cbe7d7d45989500b6aad51e636523e305e (patch)
tree2a6ef534f04ad64aa9daa78da075ddd9b0f95419 /doc
parent88a66d8d0464caf57f40cf85a24156042e7ff0d7 (diff)
parent4c2ad8a4a23524f422f476c1596c973c4308e5da (diff)
downloadnumpy-8a9b04cbe7d7d45989500b6aad51e636523e305e.tar.gz
Merge pull request #7922 from eric-wieser/np-ma-convolve
ENH: Add ma.convolve and ma.correlate for #6458
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.12.0-notes.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst
index 05ad4c152..0baa33049 100644
--- a/doc/release/1.12.0-notes.rst
+++ b/doc/release/1.12.0-notes.rst
@@ -254,6 +254,13 @@ context manager will work as expected. Additionally, it is possible
to use the context manager as a decorator which can be useful when
multiple tests give need to hide the same warning.
+New masked array functions ``ma.convolve`` and ``ma.correlate`` added
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+These functions wrapped the non-masked versions, but propagate through masked
+values. There are two different propagation modes. The default causes masked
+values to contaminate the result with masks, but the other mode only outputs
+masks if there is no alternative.
+
Improvements
============