先看看栗子 import numpy a = numpy.array([[1,2], [3,4]]) b = numpy.array([[5,6], [7,8]]) #*号a*b >>>array([[ 5, 12], [21, 32]]) #dot a.dot(b) ...
確定! 回上一頁