在numpy中,我们可以使用numpy.dot()
函数来计算两个数组的点积。点积是两个数组的对应元素相乘后再相加的结果。下面是几个使用numpy.dot()
函数的技巧:
import numpy as np
a = np.array([1, 2, 3])
b = np.array([4, 5, 6])
result = np.dot(a, b)
print(result) # Output: 32
import numpy as np
a = np.array([[1, 2], [3, 4]])
b = np.array([[5, 6], [7, 8]])
result = np.dot(a, b)
print(result)
# Output:
# [[19 22]
# [43 50]]
import numpy as np
a = np.array([[1, 2], [3, 4]])
b = np.array([5, 6])
result = np.dot(a, b)
print(result) # Output: [17 39]
注意,点积的计算规则是第一个数组的最后一个维度与第二个数组的倒数第二个维度相等。因此,要确保数组的维度匹配才能正确计算点积。