フィルターのクリア

graph algorithms

2 ビュー (過去 30 日間)
john
john 2012 年 3 月 29 日
回答済み: vansh gandhi 2023 年 6 月 15 日
Hello,
I want implement a graph algorithm. How could I create a graph and compute for example the matrix of the distance of the paths among all the nodes?

回答 (1 件)

vansh gandhi
vansh gandhi 2023 年 6 月 15 日
To create a graph you can look into this documentation Graphs in MATLAB
This is how you can compute for the matrix of the distance of the paths among all the nodes:
G = graph(); % Create a graph
G = addnode(G, 5); % Add 5 nodes to the graph
G = addedge(G, [1 1 2 2 3 4], [2 3 3 4 5 5]); % Add edges to the graph
Distances(G, 'Method' , 'unweighted') % Compute the matrix of distances

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by