Filter löschen
Filter löschen

Find distance between row vectors?

9 Ansichten (letzte 30 Tage)
Asim Ismail
Asim Ismail am 22 Mai 2017
Kommentiert: Asim Ismail am 22 Mai 2017
I got two row vectors of 1x10, how can I find distaces between them? It should be working like, distance between first two columns to the rest of numbers, then it would continue for 2nd column from both arrays to the rest of numbers and so on... so that at the end we will get a 10x10 result.
I can do it for two columns like this
a=rand(10,2)
distances=squareform(pdist(a));
  2 Kommentare
Jan
Jan am 22 Mai 2017
What exactly does "distance between first two columns to the rest of number" mean?
Asim Ismail
Asim Ismail am 22 Mai 2017
Bearbeitet: Asim Ismail am 22 Mai 2017
Its the pair distance you see the first columns of both arrays are pair to each other, and so does the second column are, and so on. For example,
X = [3 4 8 6 4 2]
Y = [ 2 7 5 4 3 6]
These numbers are actually showing the location of a point on x-axis and y-axis. (3,2) is a point and so does (4,7), (8,5)....(2,6) are.
I was asking how can I find the distance between (3,2) and the other five points, then distance between (4,7) and the rest five points, and so on.
The above code does that, but that is a different case, there is just one matrix with two columns and ten rows.
And here I have a situation with two rows which are placed in different arrays.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Guillaume
Guillaume am 22 Mai 2017
Am I missing something? can't you just concatenate you vectors into a matrix and do exactly the same as you did?
distances = squareform(pdist([X; Y].'))
Or since R2016b, you could simply do it yourself without pdist:
distances = hypot(X - X.', Y - Y.')
And in older versions
distances = hypot(bsxfun(@minus, X, X.'), bsxfun(@minus, Y, Y.'))
  1 Kommentar
Asim Ismail
Asim Ismail am 22 Mai 2017
Thank you so much @Guillaume for the help

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by