在Numpy.ndarray.__neg__()
方法的帮助下,人们可以将数组中的每一个元素都与-1相乘。 因此,结果数组中的值,如正值变成负值,负值变成正值。
语法: ndarray.__neg__($self, /)
返回: -self
例子#1 :
在这个例子中,我们可以看到,在应用numpy.__neg__()
之后,我们得到了一个简单的数组,其中有正负值的组合。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, -2, 3, 4, 5, 6])
# applying numpy.__neg__() method
print(gfg.__neg__())
输出:
[-1 2 -3 -4 -5 -6]
例子#2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, -3, 4, 5, 6],
[-6, 5, 4, 3, 2, -1]])
# applying numpy.__neg__() method
print(gfg.__neg__())
输出:
[[-1 -2 3 -4 -5 -6]
[ 6 -5 -4 -3 -2 1]]