how to save values in variable from loop
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
for a=1:10
fprintf('%d\n',a);
end
the above code will generate numbers from 1 to 10 and if I call variable 'a' from workspace it will display only last number i.e. 10. But I want to save all values from 1 to 10 in a matrix. For example, if I call variable 'a' result should be something like this [1 2 3 4 5 6 7 8 9 10] or in transpose form rather only last value (10).
0 commentaires
Réponses (1)
Massimo Zanetti
le 22 Déc 2016
Modifié(e) : Massimo Zanetti
le 22 Déc 2016
Save vector a before printing:
a = 1:10;
for k=a
fprintf('%d\n',k);
end
a
Outputs:
1
2
....
10
a =
1 2 3 4 5 6 7 8 9 10
0 commentaires
Voir également
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!