np.einsum()の下記の式の意味を教えてください。
解決したいこと
下記の式の意味を教えて頂けますか?
np.einsum('ij, ik',c,d)
コード
c = np.arange(4).reshape(2,2)
d = np.arange(6).reshape(2,3)
出力結果(array c, array d)
[[0 1]
[2 3]]
[[0 1 2]
[3 4 5]]
print(np.einsum('ij, ik',c,d))
出力結果
[[ 6 8 10]
[ 9 13 17]]
0