How to check if there is an edge between two nodes in an undirected graph?
7 ビュー (過去 30 日間)
古いコメントを表示
Waseem AL Aqqad
2022 年 5 月 20 日
回答済み: Pratibha Chaudhary
2022 年 11 月 9 日
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 件のコメント
採用された回答
Christine Tobler
2022 年 5 月 20 日
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.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Undirected Graphs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!