Borrar filtros
Borrar filtros

Hamming distance between columns of two matrices

2 visualizaciones (últimos 30 días)
riad didou
riad didou el 10 de Nov. de 2021
Editada: riad didou el 10 de Nov. de 2021
Hii
%Just an example
HamDist = pdist2(B,C,'hamming');
[~,ind] = min(HamDist,[],2);
Is there any trick to perform hamming distance between columns of two different binary matrices: A(64 by100) and B(64 by 80), and report the minimum distances?
To understand more : the "A" is a data matrix with 100 sample, and the B has 80 cluster centroids and in terms of clustering i would like to create the indicator matrix based on the minimum distance between A and B.
  2 comentarios
Awais Saeed
Awais Saeed el 10 de Nov. de 2021
How aboout padd some zeros in B to make size(A)=size(B) and then find the hamming distance
riad didou
riad didou el 10 de Nov. de 2021
To understand more : the "A" is a data matrix with 100 sample, and the B has 80 cluster centroids and in terms of clustering i would like to create the indicator matrix based on the minimum distance between A and B.

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 10 de Nov. de 2021
HamDist = pdist2(A',B','hamming');
HamDist = HamDist' ;
[~,ind] = min(HamDist,[],2);
  1 comentario
riad didou
riad didou el 10 de Nov. de 2021
but the result of the first line is a real values (HamDist )!!

Iniciar sesión para comentar.

Productos


Versión

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by