diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2016-10-19 18:15:12 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2016-10-19 19:57:06 +0100 |
commit | bf3fb267a3b014adbf6a980684877374636234b3 (patch) | |
tree | c4c6c13188ea122527ec60a749bfe903b8ede535 /doc | |
parent | cb52fd63627fa7547f5467324726d151af3aff84 (diff) | |
download | numpy-bf3fb267a3b014adbf6a980684877374636234b3.tar.gz |
DOC: correct ma.convolve docstrings, and add the feature to the release notes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.12.0-notes.rst | 7 |
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 9544b6d02..f95dcc41a 100644 --- a/doc/release/1.12.0-notes.rst +++ b/doc/release/1.12.0-notes.rst @@ -249,6 +249,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 ============ |