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.
これは、サンプル エントロピーの Python コードを書いているときに直面した問題です。
map(max, abs(a[i]-a) )非常に遅いです。
map(max, abs(a[i]-a) )
よりも優れた機能はありますmap()か?
map()
a次のようなndarrayはどこにありますかnp.array([ [1,2,3,4,5],[2,3,4,5,6],[3,4,5,3,2] ])
a
np.array([ [1,2,3,4,5],[2,3,4,5,6],[3,4,5,3,2] ])
ベクトル化された最大値を使用
>>> map(max, abs(a[2]-a) ) [3, 4, 0] >>> np.abs(a[2] - a).max(axis=1) array([3, 4, 0])