Python/numpy nonzero Gongsam 2023. 9. 23. 13:07 주어진 어레이에서 0이아닌 요소의 인덱스를 어레이로 반환 non_zero_indices = np.nonzero([1,2,0,0,4,0]) print(non_zero_indices) (array([0, 1, 4]),) 공유하기 게시글 관리 Gongsam 저작자표시 'Python > numpy' 카테고리의 다른 글 random 정리 (0) 2023.11.02 info (0) 2023.09.23 size, itemsize (0) 2023.09.23 zeros (0) 2023.09.23 'Python/numpy' Related Articles random 정리 info size, itemsize zeros