Effacer les filtres
Effacer les filtres

how to add values of each iteration to a variable?

2 vues (au cours des 30 derniers jours)
sheno39
sheno39 le 25 Fév 2014
Commenté : sheno39 le 25 Fév 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

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Fév 2014
c{i} = hogfeat(find(loc==b(i,1)));
  1 commentaire
sheno39
sheno39 le 25 Fév 2014
thank you sir.. i got my answer..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by