On this page
numpy.ma.MaskedArray.iscontiguous
method
ma.MaskedArray.iscontiguous()[source]- 
    
Return a boolean indicating whether the data is contiguous.
- Parameters
 - 
      
- None
 
 
Examples
>>> x = np.ma.array([1, 2, 3]) >>> x.iscontiguous() Trueiscontiguousreturns one of the flags of the masked array:>>> x.flags C_CONTIGUOUS : True F_CONTIGUOUS : True OWNDATA : False WRITEABLE : True ALIGNED : True WRITEBACKIFCOPY : False UPDATEIFCOPY : False 
© 2005–2021 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.20/reference/generated/numpy.ma.MaskedArray.iscontiguous.html