pair wise distance matric
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mahdieh
el 14 de Jul. de 2014
Respondida: Friedrich
el 14 de Jul. de 2014
Pdist give me n (n-1)/2 distances .I want know how i can have all of distances even with repeat means n (n-1) distances.
0 comentarios
Respuesta aceptada
Friedrich
el 14 de Jul. de 2014
Hi,
you can use squareform:
X = randn(10, 2);
D = squareform(pdist(X));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!