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

조회 수: 7 (최근 30일)
Zhuo Zhou
Zhuo Zhou 2019년 3월 6일
답변: Pranjal Priyadarshi 2019년 3월 14일
refer to the title

답변 (1개)

Pranjal Priyadarshi
Pranjal Priyadarshi 2019년 3월 14일
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

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by