MATLAB can relabel graph node table columns but not edge table columns.
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Migrate GUIDE Apps 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!