how to add values of each iteration to a variable?

조회 수: 1 (최근 30일)
sheno39
sheno39 2014년 2월 25일
댓글: sheno39 2014년 2월 25일
i have to store the values of every iteration.. but i got only the last values.. what correct i have to do? here is my code
if true
[loc,ctr]=kmeans(hogfeat,20);
b=unique(loc);
for i=1:size(b,1)
c=hogfeat(find(loc==b(i,1)));
end
end

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 25일
c{i} = hogfeat(find(loc==b(i,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