How to reliable find the distance between matrices?

1 visualización (últimos 30 días)
Serbring
Serbring el 1 de Dic. de 2020
Respondida: Pratyush Roy el 1 de Abr. de 2021
Dear all,
I need to compute the distance among matrices. These matrices describe the usage of vehicle and they report the joint probability distribution between two variables. The variables are binned.The matrix contains positive numbers. The distance metric would provide an information about the dissimilarity between the usage of two vehicles. I have tried as the following:
m=zeros(3,15,16);
m(1,13,12)=1;
m(2,12,13)=1;
m(3,1,1)=1;
norm(squeeze(m(1,:,:))-squeeze(m(2,:,:)))
norm(squeeze(m(1,:,:))-squeeze(m(3,:,:)))
norm(squeeze(m(1,:,:))-squeeze(m(2,:,:)))
The three matrices contains the same number but it is positioned in a different position. For matrix 1 (m(1,:,:)) and 2 (m(2,:,:)), the number 1 is located in a similar position, but in a very different position than matrix 3 (m(3,:,:)). The matrix 3 is the consequence of a very different vehicle usage than the others. lThis made me think that is necessary a different distance metric . Is there any other which you may reccomend for my purpose?
thank you.
best regards.

Respuestas (1)

Pratyush Roy
Pratyush Roy el 1 de Abr. de 2021
Hi,
The function pdist2 might be used to find distances between matrices.
Hope this helps!

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by