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.
2 つのバイナリ行列間のハミング距離を計算するにはどうすればよいですか?
例えば:
A = [ 1 0 1; 1 1 1 ]; B = [ 1 0 0 ; 0 0 1 ];
本当にありがとう!
ハミング距離によって、2 つの行列間の要素ごとの距離を意味する場合は、次のように単純に使用できますxor。
xor
D = xor(A,B);
そして、要素上の合計距離:
D_total = nnz(D);