Find distance between row vectors?
Show older comments
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 Comments
Jan
on 22 May 2017
What exactly does "distance between first two columns to the rest of number" mean?
Asim Ismail
on 22 May 2017
Edited: Asim Ismail
on 22 May 2017
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!