Is is possible to make a 1D array not C_CONTIGUOUS or F_CONTIGUOUS in numpy?
I think the notion of contiguous only makes sense for arrays with more dimensions but I couldn't find anything in the docs.
I tried the following to make a non contiguous 1D array:
>>> np.empty(10).flags
  C_CONTIGUOUS : True
  F_CONTIGUOUS : True
  OWNDATA : True
  WRITEABLE : True
  ALIGNED : True
  WRITEBACKIFCOPY : False
  UPDATEIFCOPY : False
>>> np.empty(10).copy('F').flags
  C_CONTIGUOUS : True
  F_CONTIGUOUS : True
  OWNDATA : True
  WRITEABLE : True
  ALIGNED : True
  WRITEBACKIFCOPY : False
  UPDATEIFCOPY : False
 
    