Delete Highlighted Node in a Graph?

7 visualizzazioni (ultimi 30 giorni)
Sanjeev K
Sanjeev K il 22 Apr 2019
Commentato: Sanjeev K il 23 Apr 2019
B = [0 1 1 1;...] % define adjacency matric of the graph
G = graph(B); plot h = G; highlight(h, 1, 'marker', 'v');
How do I delete the node highlighted so? I've tried things like "delete(findobj('marker','v')); ", but I am unable to achieve this. ( I want to delete just the the marker placed on the node, not the node itself)

Risposta accettata

Christine Tobler
Christine Tobler il 22 Apr 2019
You can use highlight to set that marker to 'none'. The GraphPlot object h contains all the graphical properties of the plotted graph, so it's not possible to find a specific marker as a seperate object - all changes have to be made by changing the properties of the GraphPlot object h.

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by