What I want to do is "mask" a subset of an array of j elements, from range 0 to k. Eg. For this array:
[0.2, 0.1, 0.3, 0.4, 0.5]
Masking the first 2 elements it becomes
[NaN, NaN, 0.3, 0.4, 0.5]
Does masked_array support this operation?
|
What I want to do is "mask" a subset of an array of j elements, from range 0 to k. Eg. For this array: [0.2, 0.1, 0.3, 0.4, 0.5] Masking the first 2 elements it becomes [NaN, NaN, 0.3, 0.4, 0.5] Does masked_array support this operation? |
|||
|
|
Or, if you already have a numpy array, you could use np.ma.masked_less_equal (see the link for a variety of other operations for masking particular elements):
Or, if you wish to mask the first two elements:
|
||||
|
|
|
I found this:
|
|||
|
|