blob: 425abf112ea6f3d3254af7fae28026ecf9650c5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
.. _routines.ma:
Masked array operations
***********************
.. currentmodule:: numpy
Creation
--------
.. autosummary::
:toctree: generated/
ma.masked_array
Converting to ndarray
---------------------
.. autosummary::
:toctree: generated/
ma.filled
ma.common_fill_value
ma.default_fill_value
ma.masked_array.get_fill_value
ma.maximum_fill_value
ma.minimum_fill_value
Inspecting the array
--------------------
.. autosummary::
:toctree: generated/
ma.getmask
ma.getmaskarray
ma.getdata
ma.count_masked
Modifying the mask
------------------
.. autosummary::
:toctree: generated/
ma.make_mask
ma.mask_cols
ma.mask_or
ma.mask_rowcols
ma.mask_rows
ma.harden_mask
ma.ids
|