Clear Filters
Clear Filters

how to convert the edge list (with node,node,weight) into weighted matrix

4 views (last 30 days)
refer to the title

Answers (1)

Pranjal Priyadarshi
Pranjal Priyadarshi on 14 Mar 2019
To convert an adjacency list into an adjacency matrix in MATLAB we can use the “adjacency” function available in the library.
A= adjacency(G,'weighted') returns a weighted adjacency matrix, where for each edge (i,j), the value A(i,j) contains the weight of the edge. If the graph has no edge weights, then A(i,j) is set to 1. For this syntax, G must be a simple graph such that ismultigraph(G) returns false.
For a detailed explanation along with examples you can use the following documents:
https://www.mathworks.com/help/matlab/ref/graph.adjacency.html

Categories

Find more on Graph and Network Algorithms 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!