Obtaining adjacency matrix from vertex connection information

10 views (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 6 Oct 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 Comment
Hayden
Hayden on 6 Oct 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.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots 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!