How to combine the result of for loop?

조회 수: 1 (최근 30일)
Muhammad Usman
Muhammad Usman 2020년 5월 12일
댓글: Muhammad Usman 2020년 5월 12일
Here is a very simple line of code:
x = 3;
A = 1:x;
for i = 1:length(A)
y = repelem(A(:,i),i);
Y = y(1,:)
end
I want to generate result in the form
[1 2 2 3 3 3]
What I am doing mistake, please help me in this regard. Thanks
  댓글 수: 3
Mirlan Karimov
Mirlan Karimov 2020년 5월 12일
x = 3;
A = 1:x;
Y = [];
for i = 1:length(A)
y = repelem(A(:,i),i);
Y(length(Y)+1:length(Y)+1 +length(y)-1) = y(1,:)
end
Muhammad Usman
Muhammad Usman 2020년 5월 12일
Can you please suggest me how to write?

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

채택된 답변

Stephen23
Stephen23 2020년 5월 12일
>> A = 1:3;
>> repelem(A,1,A)
ans =
1 2 2 3 3 3
  댓글 수: 1
Muhammad Usman
Muhammad Usman 2020년 5월 12일
Thank you so very much, very efficient

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by