How to check if there is an edge between two nodes in an undirected graph?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Waseem AL Aqqad
am 20 Mai 2022
Beantwortet: Pratibha Chaudhary
am 9 Nov. 2022
How can I check if any two nodes in an undirected graph are connected via an edge or not, please? in other words, Are they neighbors or not? Thanks!
0 Kommentare
Akzeptierte Antwort
Christine Tobler
am 20 Mai 2022
Call findedge(g, node1, node2). If there is no edge connecting these nodes, the output is zero. Otherwise, the output is the index into the Edges table of the connecting edge.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Undirected Graphs 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!