Obtaining adjacency matrix from vertex connection information

3 Ansichten (letzte 30 Tage)
I am given a list of XYZ vertices (mx3 matrix) and a list of vertex connections (nx2 matrix, X and Y are a pairing of connected vertices.) I ultimately need to be able to plot a projection on the X-Y plane from this information, and while I've found a way on this site to do this using gplot and the adjacency matrix, I can't find anything on how to use MATLAB to take the list of vertex connections and convert it to an adjacency matrix. Obviously this can be achieved manually, and I've done so for a small cube to ensure the rest of the program works, but it needs to be done automatically for any lists that could be loaded.
I have absolutely no idea where to start, and would appreciate some guidance.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 6 Okt. 2012
adjmatrix = zeros(m,m);
for K = 1 : n
p1 = vertices(K,1);
p2 = vertices(K,2);
adjmatrix(p1,p2) = 1;
adjmatrix(p2,p1) = 1;
end
  1 Kommentar
Hayden
Hayden am 6 Okt. 2012
Once an understanding of the code was achieved it worked perfectly. Likely something I should have been able to arrive at myself with more familiarity in Matlab, but I clearly was not there.
Thank you sincerely.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots 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!

Translated by