Example 1: numpy.dot >>> a = [[1, 0], [0, 1]] >>> b = [[4, 1], [2, 2]] >>> np.dot(a, b) array([[4, 1], [2, 2]]) Example 2: dot operator in python # In ...
確定! 回上一頁