반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

numpy.무한대 처리 본문

[IT]/python.numpy

numpy.무한대 처리

givemebro 2020. 3. 30. 18:03
반응형
a = np.arange(12).reshape(4,3)
a

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

1/a
'''
array([[       inf, 1.        , 0.5       ],
       [0.33333333, 0.25      , 0.2       ],
       [0.16666667, 0.14285714, 0.125     ],
       [0.11111111, 0.1       , 0.09090909]])
'''
반응형

'[IT] > python.numpy' 카테고리의 다른 글

numpy.score  (0) 2020.05.12
numpy.corrcoef  (0) 2020.04.27
numpy.where.3단 논법  (0) 2020.04.23
numpy.브로드캐스팅  (0) 2020.03.30
numpy.스칼라 연산  (0) 2020.03.30
numpy.file open  (0) 2020.03.27
numpy.reshape(차원 변경)  (0) 2020.03.26
numpy.dtype이용 type변경  (0) 2020.03.26
Comments