eucilidean distance between two matrix

10 次查看(过去 30 天)
i have two matrix i want to find euclidean distance, for their similarity.

回答(3 个)

KSSV
KSSV 2016-11-9
doc pdist2.

Walter Roberson
Walter Roberson 2016-11-9
It is only possible to find the euclidian distance between two matrices if the matrices are simple scalars or are vectors. If they are, for example, two dimensional histograms then euclidian distance does not apply.
  3 个评论
Walter Roberson
Walter Roberson 2016-11-9
Euclidian distance cannot be used in that situation.
Walter Roberson
Walter Roberson 2016-11-9
What you can do is reshape() the arrays to be vectors, after which the values can act as coordinates that you can apply Euclidean distance to. But it is not clear that would have same meaning as "Euclidean distance between matrices", as the second dimension of the matrices implies a relationship between the components that is not captured by pure component-wise distance measures.
Trying to find the Euclidean distance between matrices is much like trying to sort complex numbers: a complex number is not the same as two numbers together.

请先登录,再进行评论。


Image Analyst
Image Analyst 2016-11-9
Not sure what your definition is, but perhaps do you mean the Euclidean distance between each corresponding pair of elements, and then maybe perhaps summing or taking of the mean of all of them?
distances = queryica - Z;
eucDistance = sum(distances); % or....
eucDistance = mean(distances(:));
If not, then maybe you can attach a diagram showing the distances between the matrices or pairs of points.

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by