フィルターのクリア

How to make a line between random nodes connection ?

2 ビュー (過去 30 日間)
Asyran Abdullah
Asyran Abdullah 2018 年 8 月 24 日
コメント済み: Asyran Abdullah 2018 年 8 月 24 日
Hi guys,
How to make a connection between random nodes and select 1 of them as a cluster head?
numNodes=10;
p = rand(numNodes,2);
labels = cellstr( num2str([1:numNodes]') );
plot(p(:,1),p(:,2),'rx')
text(p(:,1), p(:,2), labels, 'VerticalAlignment','bottom', ...
'HorizontalAlignment','right')
The figure

採用された回答

Walter Roberson
Walter Roberson 2018 年 8 月 24 日
numNodes = 10;
numEdge = 15; %maximum, really. Random edges are generated and there could be duplicates
p = rand(numNodes,2);
st = unique( sort( randi(numNodes, numEdge, 2), 2), 'rows');
G = graph(st(:,1), st(:,2));
gp = plot(G);
gp.XData = p(:,1); gp.YData = p(:,2);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel Computing Fundamentals についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by