Finding Euclidean Distance
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
I have a matrix
A = [2 4 5 7 8 ; ...
5 2 3 1 0 ; ...
8 9 1 0 3 ; ...
7 2 3 7];
i have another matrix
D = [7
1
o
3];
plz tell how to find the euclidean distance
2 个评论
Jan
2012-6-21
Dear kash, I've formatted your code to improve the readability. Then it gets obvious, that 1. "A" is not a matrix, because the last line contains 4 elements only, and that 2. "D" contains the character 'o'. Should this be the number zero?
Finally the Euclidean distance is defined between vectors only. Do you want the average distance between the vector D and the column vectors of A, or the vector of distances, or the min or max of them?
kash
2012-6-21
回答(0 个)
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!