how to append values in a vector in for loop?

조회 수: 4 (최근 30일)
sheno39
sheno39 2014년 5월 14일
편집: Andrei Bobrov 2014년 5월 14일
out=[0 1;1 3;2 5;3 5; 7 2; 8 1;9 1;11 4];
for i=1:8
if out(i,2)==max(out(:,2))
val=out(i,1)
end
end
The output i need is 2 and 3, but in my code the variable 'val' stores only 3. I want to store 2 and 3 in the vector 'val. Any one help me?

채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 5월 14일
편집: Andrei Bobrov 2014년 5월 14일
out=[0 1;1 3;2 5;3 5; 7 2; 8 1;9 1;11 4];
k = 0;
for i=1:8
if out(i,2)==max(out(:,2))
k = k + 1;
val(k)=out(i,1);
end
end
or
val = out(out(:,2)==max(out(:,2)),1);

추가 답변 (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