Finding Euclidean Distance
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comments
Jan
on 21 Jun 2012
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
on 21 Jun 2012
Answers (0)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!