在Numpy numpy.ndarray.__mul__()
的帮助下,我们可以将ndarray.__mul__()
方法中作为参数提供的一个特定值相乘。值将被乘以numpy数组中的每一个元素。
语法: ndarray.__mul__($self, value, /)
返回: self*value
例子#1 :
在这个例子中,我们可以看到,数组中的每个元素都与方法ndarray.__mul__()
中作为参数给出的值相乘。这个方法对数组的正值、负值和浮点值都能正常工作。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2.5, 3, 4.8, 5])
# applying ndarray.__mul__() method
print(gfg.__mul__(5))
输出:
[ 5. 12.5 15. 24. 25. ]
例子#2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3, 4.45, 5],
[6, 5.5, 4, 3, 2.62]])
# applying ndarray.__mul__() method
print(gfg.__mul__(5))
输出:
[[ 5. 10. 15. 22.25 25. ]
[ 30. 27.5 20. 15. 13.1 ]]