create subarray from an given array

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

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 3월 21일
편집: Azzi Abdelmalek 2014년 3월 21일

0 개 추천

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

Industrial
Industrial 2014년 3월 21일
thank you for answer But the following error comes: ??? Error using ==> randperm Too many input arguments.
Error in ==> Untitled2 at 7 ng=d(randperm(numel(d),1))
Industrial
Industrial 2014년 3월 21일
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
Azzi Abdelmalek
Azzi Abdelmalek 2014년 3월 21일
What version of matlab are you using?
Azzi Abdelmalek
Azzi Abdelmalek 2014년 3월 21일
Look at edied answer
Industrial
Industrial 2014년 3월 22일
편집: Industrial 2014년 3월 22일
sir i am usin R2009a version of matlab
Azzi Abdelmalek
Azzi Abdelmalek 2014년 3월 22일
Ok, try the edited answer

댓글을 달려면 로그인하십시오.

Jos (10584)
Jos (10584) 2014년 3월 21일

0 개 추천

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)

댓글 수: 1

Industrial
Industrial 2014년 3월 22일
Thank you for your kind consideration
But in this problem all sizes of groups might not be present in the answer. Even groups may have same sizes, but may differ when executed number of times in a loop. Actually it is to be used in a Manufacturing cell family formation problem in which a part family may have some parts and another part family may have from rest of the parts.
thanks.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2014년 3월 21일

댓글:

2014년 3월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by