Вопрос

how can I calculate the hamming distance between two binary matrices?

for example:

A = [ 1 0 1; 1 1 1 ];
B = [ 1 0 0 ; 0 0 1 ];

Thanks so much!

Это было полезно?

Решение

If by Hamming distance you mean an element-wise distance between two matrices you can simply use xor:

D = xor(A,B);

And the total distance over elements:

D_total = nnz(D);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top