constructing an adjacency list from incidence matrix
    4 views (last 30 days)
  
       Show older comments
    
I have a directed graph with an incidence matrix like this:
AP=[1,0,0,0,0,0,0,0;-1,0,1,1,1,0,0,0;0,0,-1,0,0,1,0,0;0,0,0,-1,0,0,0,0;0,0,0,0,-1,0,0,0;0,0,0,0,0,-1,0,0]
AP =
     1     0     0     0     0     0     0     0
    -1     0     1     1     1     0     0     0
     0     0    -1     0     0     1     0     0
     0     0     0    -1     0     0     0     0
     0     0     0     0    -1     0     0     0
     0     0     0     0     0    -1     0     0
How can I construct an adjacency list with this information? Thank you!
0 Comments
Accepted Answer
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
