numpy.ma.MaskedArray.dtype

MaskedArray.dtype

Data-type of the array’s elements.

Parameters:None :
Returns:d : numpy dtype object

See also

numpy.dtype

Examples

>>> x
array([[0, 1],
       [2, 3]])
>>> x.dtype
dtype('int32')
>>> type(x.dtype)
<type 'numpy.dtype'>

Previous topic

numpy.ma.MaskedArray.ctypes

Next topic

numpy.ma.MaskedArray.flags

This Page