how to add values of each iteration to a variable?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
sheno39
el 25 de Feb. de 2014
Comentada: sheno39
el 25 de Feb. de 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
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!