Python| numpy numpy.ndarray.__neg__()
借助Numpy的numpy.ndarray.__neg__()方法,可以将数组的每个元素乘以 -1。因此,具有正值等值的结果数组变为负值,负值变为正值。
Syntax: ndarray.__neg__($self, /)
Return: -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]]