Clear Filters
Clear Filters

Creating an array for each neighbor of a node in graph

6 views (last 30 days)
Hi community, i want to create an array or a table for each neighbor of a node. In the sample of code give, the neighbors of a certain random node is what is in the variable 'acnode , so i want to create an array for each variable in 'acnode'. So i want new arrays in the form 'node' plus the name of the neighbor, example: node1322 = [], node1416 = [], node1845 = [].
nodepos = randi(length(1:nodesize));
rnode = (nodepos)
node_ngb = neighbors(G, rnode)
acnode = [];
for i = 1:length(node_ngb)
acnode = node_ngb(1:i);
end
acnode
acnode =
1322
1416
1845

Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!