how to save values in variable from loop

1 vue (au cours des 30 derniers jours)
siki
siki le 22 Déc 2016
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).

Réponses (1)

Massimo Zanetti
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

Catégories

En savoir plus sur Logical 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