numpy.ma.MaskedArray.__array__#

方法

ma.MaskedArray.__array__([dtype, ]*, copy=None)#

对于 dtype 参数,如果未给出 dtype 或其与数组的数据类型匹配,则返回对自身的新的引用。如果 dtype 与数组的当前数据类型不同,则返回具有提供的數據类型的新的数组。对于 copy 参数,如果 copy=Falsecopy=None 且复制未被 dtype 参数强制执行,则返回对自身的新的引用。对于 copy=True,无论 dtype 参数如何,该方法都返回一个新的数组。

可以在 __array__() 方法 中找到对 __array__ 接口的更详细解释。