MATLAB can relabel graph node table columns but not edge table columns.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!