I have a vector that provides me with a strict order of n number. If n is 5, for example, I type
y=randperm(5)
and I get something like
1 3 5 4 2
I want to scale this order by a factor of x. If x=3, I would like to get
1 2 3 7 8 9 13 14 15 10 11 12 4 5 6
Is there an easy way to do this that I am missing? I know that
reshape(repmat(y,x=3,1),1,[])
creates
1 1 1 3 3 3 5 5 5 4 4 4 2 2 2
and then I can add 1 to 3 using a loop, but surely there is something faster that I am missing.

댓글 수: 2

Josué Ortega
Josué Ortega 2019년 8월 28일
I have another question. The command you suggested gives me
1 2 3 7 8 9 13 14 15 10 11 12 4 5 6
is there a way to get the order of each group randomly?
So that I could get
3 1 2 9 7 8 13 14 15 11 10 12 4 6 5
Any ideas are most welcomed.
result = cell2mat(arrayfun(@(y)randperm(x)+(y-1)*x,y,'uni',false));

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

 채택된 답변

James Tursa
James Tursa 2019년 8월 26일

1 개 추천

One way:
>> result = cell2mat(arrayfun(@(y)x*y-x+1:x*y,y,'uni',false))
result =
1 2 3 7 8 9 13 14 15 10 11 12 4 5 6

댓글 수: 4

Josué Ortega
Josué Ortega 2019년 8월 26일
Many thanks for your kind answer! Just one more question: how do I invert this? Suppose I have "result", how do I get the original order?
Thanks
James Tursa
James Tursa 2019년 8월 26일
편집: James Tursa 2019년 8월 26일
Do you also know x? And using result and x want to get y?
Josué Ortega
Josué Ortega 2019년 8월 26일
exactly
Josué Ortega
Josué Ortega 2019년 8월 26일
got it, apologies for the silly question

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

태그

질문:

2019년 8월 26일

댓글:

2019년 8월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by