How to store all values resulting from loop
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, Here disp(k1) gives all the values resulting from the for loop.But it store only the last value.How do I store all the values resulting from the for loop. for k=1:70
E_distym(k) = sqrt(sum((featureQ-A(k)).^2));% creating Euclidean distance database for 70 imagesa end A1=[]; for k1=1:70
if(E_distym(k1)<30)
disp(k1);
A1=k1;
end
I
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!