numpy.ma.MaskedArray.__array__#
method
- ma.MaskedArray.__array__([dtype, ]*, copy=None)#
For
dtype
parameter it returns a new reference to self ifdtype
is not given or it matches array’s data type. A new array of provided data type is returned ifdtype
is different from the current data type of the array. Forcopy
parameter it returns a new reference to self ifcopy=False
orcopy=None
and copying isn’t enforced bydtype
parameter. The method returns a new array forcopy=True
, regardless ofdtype
parameter.A more detailed explanation of the
__array__
interface can be found in The __array__() method.