How to reshaping a matrix (2D array) using index ordering with NumPy in Python

1 Answer

0 votes
import numpy as np

arr = np.arange(12).reshape((3, 4))
print(arr)

print()

arr = np.reshape(arr, (4, 3))
print(arr)




'''
run:

[[ 0  1  2  3]
 [ 4  5  6  7]
 [ 8  9 10 11]]

[[ 0  1  2]
 [ 3  4  5]
 [ 6  7  8]
 [ 9 10 11]]

'''

 



answered Mar 10, 2023 by avibootz
...