Python| numpy numpy.ndarray.__sub__()
在Numpy numpy.ndarray.__sub__()
的帮助下,我们可以减去在ndarray.__sub__()
方法中作为参数提供的特定值。 numpy 数组中的每个元素都会减去值。
Syntax: ndarray.__sub__($self, value, /)
Return: self-value
示例 #1:
在这个例子中,我们可以看到数组中的每个元素都减去了在方法ndarray.__sub__()
中作为参数给出的值。请记住一件事,它不适用于双精度类型值。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2, 3, 4, 5])
# applying ndarray.__sub__() method
print(gfg.__sub__(5))
输出:
[-4 -3 -2 -1 0]
示例 #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, 5, 4, 3, 2]])
# applying ndarray.__sub__() method
print(gfg.__sub__(5))
输出:
[[-4 -3 -2 -1 0]
[ 1 0 -1 -2 -3]]