Info

This question is closed. Reopen it to edit or answer.

Finding Euclidean Distance

1 view (last 30 days)
kash
kash on 21 Jun 2012
Closed: MATLAB Answer Bot on 20 Aug 2021
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
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
kash on 21 Jun 2012
Sorry jan some mistake in that matrix
A = [2 4 5 7 8 ; ...
5 2 3 1 10 ; ...
8 9 1 10 3 ; ...
7 2 3 7 1];

Answers (0)

Community Treasure Hunt

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

Start Hunting!