Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

NumPy: ascontiguousarray() function

ascontiguousarray() function

The ascontiguousarray() function is used to get a contiguous array in memory (C order).

Syntax:

numpy.ascontiguousarray(a, dtype=None)
NumPy array: ascontiguousarray() function

Version: 1.15.0

Parameter:

Name Description Required /
Optional
a Input array. Required
dtype Data-type of returned array. optional

Return value:

[ndarray]
Contiguous array of same shape and content as a, with type dtype if specified.

Example-1: NumPy.ascontiguousarray() function

>>> import numpy as np
>>> a = np.arange(8). reshape (4, 2)
>>> np.ascontiguousarray(a, dtype=np.float32)
array([[ 0.,  1.],
       [ 2.,  3.],
       [ 4.,  5.],
       [ 6.,  7.]], dtype=float32)

Pictorial Presentation:

NumPy array: ascontiguousarray() function

Example-2: NumPy.ascontiguousarray() function

>>> import numpy as np
>>> a = np.arange(8). reshape (4, 2)
>>> np.ascontiguousarray(a, dtype=np.float32)
array([[ 0.,  1.],
       [ 2.,  3.],
       [ 4.,  5.],
       [ 6.,  7.]], dtype=float32)
>>> a.flags['C_CONTIGUOUS']
True

Python - NumPy Code Editor:

Previous: asanyarray()
Next: asmatrix()