Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to construct all possible combinations of points in N-dimensional space

1 Ansicht (letzte 30 Tage)
mohamed Faraj
mohamed Faraj am 22 Jul. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have x-y coordinates of 3 points, e.g, (x1,y1,0),(x2,y2,0), and (x3,y3,0). I want to construct other points on top of these 3 points at fixed z locations, e.g., every z=4. So, in total we have 3*N points. For example, if N=2, we have 6 points in total at locations (x1,y1,0),(x2,y2,0), (x3,y3,0),(x1,y1,4),(x2,y2,4), and (x3,y3,4). After that, I want to find the distance between every two points and arrange these distances in a symmetric matrix which looks like [d11 d12 d13 d14 d15 d16;d21 d22 d23 d24 d25 d26...]. Note that d12=d21..etc.Here, I give an example of 3 points as a basis to start with but it could be much larger. What is the most efficient way to construct this?. Appreciate it

Antworten (1)

Matt J
Matt J am 22 Jul. 2020
X=[x1,x2,x3].';
Y=[y1,y2,y3].';
[I,J]=ndgrid(1:3,4*(0:N-1) );
P=[X(I(:)),Y(I(:)), J(:)];
d=pdist2(P,P);
  2 Kommentare
mohamed Faraj
mohamed Faraj am 22 Jul. 2020
Thanks Matt. I have 2013 matlsb. pdist2 is not available. Any other suggestion please.

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by