フィルターのクリア

How to find out TSP of a graph.

2 ビュー (過去 30 日間)
Ashish Verma
Ashish Verma 2022 年 7 月 28 日
回答済み: Bruno Luong 2022 年 7 月 28 日
I have 5 points in a graph and need to find TSP
s = [1 1 1 1 2 2 2 3 3 4 ]
t= [ 2 3 4 5 3 4 5 4 5 5]
G = graph(s,t);
G.Edges.Weight = [ 10 21 3 8 9 10 12 5 7 2 ];

回答 (2 件)

Sam Chak
Sam Chak 2022 年 7 月 28 日
You want to plot the graph like this?
s = [1 1 1 1 2 2 2 3 3 4];
t = [2 3 4 5 3 4 5 4 5 5];
weights = [10 21 3 8 9 10 12 5 7 2];
G = graph(s, t, weights);
plot(G, 'EdgeLabel', G.Edges.Weight)
  1 件のコメント
Ashish Verma
Ashish Verma 2022 年 7 月 28 日
Actually no, i have that graph, from this graph i want to find TSP (from point 1 to 5) means travelling all vertices with minimum cost.

サインインしてコメントする。


Bruno Luong
Bruno Luong 2022 年 7 月 28 日

カテゴリ

Help Center および File ExchangeTraveling Salesman (TSP) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by