create subarray from an given array
8 views (last 30 days)
Show older comments
To create few no. of arrays from a given long array, eg. given = [1 2 3 4 5 6 7 8 9 ....]
to create randomly [3 4 9] [1 5 8] [2 6 7] ... if size of group is given between 3 and 3 (between two nos.) by user
or [2 6 9 5] [1 3 4 7 8] etc.. if the size of group is between 4 and 5 given by user (may vary and no of group can also vary) also no number should repeat again, and should be present in array given earlier
0 Comments
Answers (2)
Azzi Abdelmalek
on 21 Mar 2014
Edited: Azzi Abdelmalek
on 21 Mar 2014
EDIT
a=[1 2 3 4 5 6 7 8 9]
n=numel(a)
% find divisor of a
c=1:n
d = c(rem(n,c)==0)
% number of groupes
ng=d(randi(numel(d),1))
%------Length of group------------------
lg=n/ng
%-------------Result---------------------
s=randperm(n);
out=num2cell(reshape(a(s),ng,lg),2)
6 Comments
Jos (10584)
on 21 Mar 2014
This problem is somewhat ill-defined. If there are multiple group sizes allowed, should all group sizes be present an equal amount of times? And things might not fit, for instance, when the number of elements in A is odd, and the AllowGroupSize is even …
Here is a suggestion:
A = 1:21
AllowedGroupSize = [3 4]
GroupSizes = repmat(AllowedGroupSize,1, numel(A) ./ sum(AllowedGroupSize))
C = mat2cell(A(randperm(numel(A))),1,GroupSizes)
See Also
Categories
Find more on Logical 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!