how to add values of each iteration to a variable?

1 Ansicht (letzte 30 Tage)
sheno39
sheno39 am 25 Feb. 2014
Kommentiert: sheno39 am 25 Feb. 2014
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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Feb. 2014
c{i} = hogfeat(find(loc==b(i,1)));

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by