python | numpy num py . ndaarray . _ _ _ sub _()
哎哎哎:# t0]https://www . geeksforgeeks . org/python-num py-num py-ndaarray- _ _ sub /
在**Numpy numpy.ndarray.__sub__()**
的帮助下,我们可以减去在ndarray.__sub__()
方法中作为参数提供的特定值。值将被减去到 numpy 数组中的每个元素。
语法:n 数组。sub($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))
Output:
[-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))
Output:
[[-4 -3 -2 -1 0]
[ 1 0 -1 -2 -3]]