How to calculate the distance
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Asad Abbas
am 13 Mär. 2019
Kommentiert: Asad Abbas
am 13 Mär. 2019
I have table B as given bellow. I have another point for example A=[100 111 80 120]. I want to calculate the euclidean distance between A and the columns (fourth, fifth, sixth and seventh) of B for each row.
B=
0 1 0 153 119 97 148
0 1 0 148 122 98 149
0 1 0 163 126 95 150
0 1 0 188 150 118 178
2 Kommentare
Akzeptierte Antwort
Torsten
am 13 Mär. 2019
distmat = B(:,4:7)-repmat(A,4,1);
dist = vecnorm(distmat.')
4 Kommentare
Torsten
am 13 Mär. 2019
Works for me:
A = [100 111 80 120];
B = [0,1, 0, 153, 119, 97, 148;...
0, 1, 0, 148, 122, 98, 149;...
0, 1, 0, 163, 126, 95, 150;...
0, 1, 0, 188, 150, 118, 178];
distmat = B(:,4:7)-repmat(A,4,1);
dist = vecnorm(distmat.')
Weitere Antworten (1)
Alex Mcaulley
am 13 Mär. 2019
What do you mean by distance? euclidean, just the difference...
If you are looking for the difference:
B = [0 1 0 153 119 97 148;
0 1 0 148 122 98 149;
0 1 0 163 126 95 150;
0 1 0 188 150 118 178];
A = [100 111 80 120];
res = B(:,4:7)-A;
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!