Question on using addedge()
조회 수: 18 (최근 30일)
이전 댓글 표시
How do we use addedge to assign weights to a graph containing edges with multiple edge weigths(Value1 and Value2, in my example)?
tail = [1 2 3 4];
head = [2 3 4 5];
G = graph(tail,head)
G.Edges.Value1 = ones(4,1)
G.Edges.Value2 = zeros(4,1)
G = addedge(G,5,6,1) %I want to assign 1 to Value1 to the new edge created between nodes 5,6
I obtain the following error.
Error using graph/addedge (line 139)
Unable to add weighted edges to an unweighted graph.
Any suggestions?
댓글 수: 3
채택된 답변
Jan
2018년 12월 14일
편집: Jan
2018년 12월 14일
Do you mean:
G = addedge(G,5,6)
G.Edges.Value1 = ones(5,1)
Or
T = table(1, 0, 'VariableNames', {'Value1', 'Value2'});
G = addedge(G, 5, 6, T)
댓글 수: 1
Steven Lord
2018년 12월 14일
Or you can build a table with variables EndNodes and your custom attribute names and call addedge with the graph and the table as the two inputs. The "Add Edges with Attributes to Graph" example on the addedge documentation page shows how to do this.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!