diff options
author | pierregm <pierregm@localhost> | 2009-01-13 21:01:58 +0000 |
---|---|---|
committer | pierregm <pierregm@localhost> | 2009-01-13 21:01:58 +0000 |
commit | 6b633fa3c8f08dd7b1658ee5ed8e560e2f3a9f5f (patch) | |
tree | dda1c347e52172fdb8566fac2cf6a07fc35fb787 /doc/source/reference/arrays.classes.rst | |
parent | 71194089c90f9c65cab1b15671491aa5a8c2e43c (diff) | |
download | numpy-6b633fa3c8f08dd7b1658ee5ed8e560e2f3a9f5f.tar.gz |
numpy.ma.core:
* introduced baseclass, sharedmask and hardmask as readonly properties of MaskedArray
* docstrings update
numpy.ma.extras:
* docstring updates
docs/reference
* introduced maskedarray, maskedarray.baseclass, maskedarray.generic
Diffstat (limited to 'doc/source/reference/arrays.classes.rst')
-rw-r--r-- | doc/source/reference/arrays.classes.rst | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/doc/source/reference/arrays.classes.rst b/doc/source/reference/arrays.classes.rst index 65fc10af5..41253a077 100644 --- a/doc/source/reference/arrays.classes.rst +++ b/doc/source/reference/arrays.classes.rst @@ -261,7 +261,12 @@ scalar data type object :class:`record`. Masked arrays (:mod:`numpy.ma`) =============================== -.. seealso:: :ref:`routines.ma` +.. seealso:: :ref:`maskedarray` + +Masked arrays are arrays that may have missing or invalid entries. +The :mod:`numpy.ma` module provides a nearly work-alike replacement for numpy +that supports data arrays with masks. + .. XXX: masked array documentation should be improved @@ -270,12 +275,10 @@ Masked arrays (:mod:`numpy.ma`) .. index:: single: masked arrays -.. autosummary:: - :toctree: generated/ - - ma.masked_array +.. toctree:: + :maxdepth: 2 -.. automodule:: numpy.ma + maskedarray Standard container class |