Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
anumpy では、次のbように 2 つのベクトル間で「外部加算」を実行できます。
a
b
a=np.c_[1,2,3] b=np.c_[4,5,6] result=a+b.T # alternatively this can be a.T+b
einsum同じ計算をするために使用することは可能ですか?他の高速な代替手段はありますか? if aequals はbどうですか?
einsum