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!