List(Vecor) Generation

조회 수: 4 (최근 30일)
Junjie Liao
Junjie Liao 2019년 9월 8일
편집: Andrei Bobrov 2019년 9월 8일
Can I generate list [1 2 3 2 3 4 3 4 5 4 5 6 ....] without for loop?
Thanks!

채택된 답변

madhan ravi
madhan ravi 2019년 9월 8일
m=3; % pairs
n=4; % n combinations
reshape((0:n-1)+(1:m)',1,[])
  댓글 수: 1
madhan ravi
madhan ravi 2019년 9월 8일
If you're using version prior to 2016b:
% last line would be
reshape(bsxfun(@plus,(0:n-1),(1:m)'),1,[])

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

추가 답변 (2개)

Walter Roberson
Walter Roberson 2019년 9월 8일
T=1:3*n;
Vec = floor(T/3) + mod(T-1,3) + 1;
  댓글 수: 2
Junjie Liao
Junjie Liao 2019년 9월 8일
The output is 1 2 4 2 3 5 3 4 6 :(
Junjie Liao
Junjie Liao 2019년 9월 8일
Correct answer should be Vec = floor(T/4) + mod(T-1,3) + 1.
Thanks!

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


Andrei Bobrov
Andrei Bobrov 2019년 9월 8일
편집: Andrei Bobrov 2019년 9월 8일
m=3;
n=4;
T = 1:m*n;
out = ceil(T/m) + mod(T-1,m);
or
out = floor(T/n) + mod(T-1,m) + 1;
or
out = repmat(1:m,1,n) + repelem(0:n-1,m);

카테고리

Help CenterFile Exchange에서 Dijkstra algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by