recarray.flatten(order='C') Return a copy of the array collapsed into one dimension.
| Parameters: |
order : {‘C’, ‘F’, ‘A’, ‘K’}, optional ‘C’ means to flatten in row-major (C-style) order. ‘F’ means to flatten in column-major (Fortran- style) order. ‘A’ means to flatten in column-major order if |
|---|---|
| Returns: |
y : ndarray A copy of the input array, flattened to one dimension. |
See also
ravel
flat >>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
© 2008–2017 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.14.2/reference/generated/numpy.recarray.flatten.html