Clear Filters
Clear Filters

question on generating random numbers

1 view (last 30 days)
Here is my matlab code S{1,2} = [0,1,3,6];
S{1,5} = [0,2]
S{1,4} = [0,4,7]; The above code means that an arc say (1,2) has set [0,1,3,6] and arc(1,5) has set [0,2] and so on. I would like to create these sets randomly for each arc.( the sets should have integer numbers between 0-10). Please help!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 7 Sep 2013
Edited: Azzi Abdelmalek on 7 Sep 2013
k=100 % number of random arcs
out=arrayfun(@(x) sort(randperm(11,randi(10)+1)-1),1:k,'un',0);
celldisp(out)

More Answers (1)

Youssef  Khmou
Youssef Khmou on 7 Sep 2013
John
Using random permutation can be helpful, start from this prototype :
S=cell(10,1);
for n=1:10
S{n}=randperm(10);
end
you can add an integer random number n to truncate S{i} each time .

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!