감동, 마음이 움직이는 것
[python] array에서 특정 값을 가지는 위치 반환 np.where(condition) 본문
Tips (Utility, Computer Language, and etc.)
[python] array에서 특정 값을 가지는 위치 반환 np.where(condition)
Struggler J. 2018. 1. 5. 02:36import numpy as np
zeroidx = np.where(norm<=0)
#모든 해당 위치를 1로 바꾸고 싶으면 아래와 같이 적어주면 된다.
norm[zeroidx] = 1
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] error for color axis after log scale fitting (0) | 2018.01.05 |
---|---|
[python] folder안의 file이름 읽어들이기 (0) | 2018.01.05 |
[c++] count # of row and col in data file (0) | 2018.01.04 |
[gnuplot] use single colorbar in multiplot (0) | 2018.01.04 |
[LaTex] Multirow 모드에서 linebreak (0) | 2017.12.25 |