numpy.negative

numpy.negative 함수는 요소 단위의 ‘numerical negative’를 반환합니다.

다시 말해서, 입력 x에 대해 y = -x 를 반환합니다.



예제

import numpy as np

a = np.negative(1.)
b = np.negative(-1.)
c = np.negative([1., -1.])

print(a)
print(b)
print(c)
-1.0
1.0
[-1.  1.]


이전글/다음글

다음글 :