Note

Numpy (7) 본문

Numpy

Numpy (7)

알 수 없는 사용자 2022. 7. 27. 20:47
728x90

How to reshape an array?

arr = np.arange(10)
arr.reshape(2, -1)  

output
array([[0, 1, 2, 3, 4],
       [5, 6, 7, 8, 9]])

'Numpy' 카테고리의 다른 글

Numpy (9)  (0) 2022.07.29
Numpy (8)  (0) 2022.07.28
Numpy (6)  (0) 2022.07.26
Numpy (5)  (0) 2022.07.25
Numpy (4)  (0) 2022.07.24
Comments