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/maskedarray.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/maskedarray.rst')
-rw-r--r-- | doc/source/reference/maskedarray.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/source/reference/maskedarray.rst b/doc/source/reference/maskedarray.rst new file mode 100644 index 000000000..aae06c361 --- /dev/null +++ b/doc/source/reference/maskedarray.rst @@ -0,0 +1,14 @@ +.. _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. + + +.. toctree:: + :maxdepth: 2 + + maskedarray.generic + maskedarray.baseclass + routines.ma
\ No newline at end of file |