numpy.ascontiguousarray(a, dtype=None) [source]
Return a contiguous array (ndim >= 1) in memory (C order).
| Parameters: |
|
|---|---|
| Returns: |
|
See also
asfortranarray
require
ndarray.flags
>>> x = np.arange(6).reshape(2,3)
>>> np.ascontiguousarray(x, dtype=np.float32)
array([[0., 1., 2.],
[3., 4., 5.]], dtype=float32)
>>> x.flags['C_CONTIGUOUS']
True
Note: This function returns an array with at least one-dimension (1-d) so it will not preserve 0-d arrays.
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.ascontiguousarray.html