-
MaskedArray.iscontiguous()
[source] -
Return a boolean indicating whether the data is contiguous.
Parameters: None Examples
>>> x = np.ma.array([1, 2, 3]) >>> x.iscontiguous() True
iscontiguous
returns one of the flags of the masked array:>>> x.flags C_CONTIGUOUS : True F_CONTIGUOUS : True OWNDATA : False WRITEABLE : True ALIGNED : True UPDATEIFCOPY : False
MaskedArray.iscontiguous()
2017-01-10 18:10:10
Please login to continue.