how to save values in variable from loop

조회 수: 1 (최근 30일)
siki
siki 2016년 12월 22일
편집: Massimo Zanetti 2016년 12월 22일
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).

답변 (1개)

Massimo Zanetti
Massimo Zanetti 2016년 12월 22일
편집: Massimo Zanetti 2016년 12월 22일
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

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by