numpy 関数ndarray.dotの使い方の例 2023年2月23日 8181yuuta 関数の機能:他の配列との内積を返却 >>> a = np.array([3,4]) >>> b = np.array([2,3]) >>> a.dot(b) 18