If you want to get a 1-D array of a multi-dimensional array, try np.ravel(arr). You can either read the elements in the same row first or read the elements in the same column first.
When flattening a multi-dimensional array, you might want to read the elements in the same columns first instead of reading the elements in the same rows first.
3 thoughts on “np.ravel: Flatten a Numpy Array”
What is the importance of the order argument in np.ravel ?
When flattening a multi-dimensional array, you might want to read the elements in the same columns first instead of reading the elements in the same rows first.
Comments are closed.