MATLAB can relabel graph node table columns but not edge table columns.
조회 수: 2 (최근 30일)
이전 댓글 표시
It seems that I can rename a column in the Nodes table of a graph but trying to do so for the Edges table returns an error. (This is a minimal example. It has come up in a method I'm trying to write for a user-defined class.)
g=digraph([1 2],[2 2]);
g.Nodes.label={'A';'B'}
g.Nodes = renamevars(g.Nodes,'label','Label')
g.Edges.label={'A';'B'}
g.Edges = renamevars(g.Edges,'label','Label')
댓글 수: 0
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!