This is documentation for an old release of NumPy (version 1.3.). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.ma.masked_inside
-
numpy.ma.masked_inside(x, v1, v2, copy=True)
Shortcut to masked_where, where condition is True for x inside
the interval [v1,v2] (v1 <= x <= v2). The boundaries v1 and v2
can be given in either order.
Notes
The array x is prefilled with its filling value.