How to save a variable which changes runtime in Matlab?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I have tried to run this simple script in Matlab: clear all; for i=1:3 if i==1 save indice.mat i; else save indice.mat i -append; end end load indice.mat
I expected to see in my workspace a variable i like this: [1 2 3] or [1; 2; 3] but the result was different: Matlab seems to store only the last value (in this case 3) of the variable i. Does anyone know why? How can I do? Thank you for help
댓글 수: 0
채택된 답변
Chandra Kurniawan
2012년 1월 26일
Did you mean :
clear;
for i = 1 : 3
s(i) = i;
if i == 1
save indice.mat s;
else
save indice.mat s -append;
end
end
load indice.mat
댓글 수: 3
Chandra Kurniawan
2012년 1월 26일
You said that 'I don't want to create an array' but in your question you wrote [1 2 3].
[1 2 3] is an array.
If consider not to use array, then the output should produce a scalar that store only the last value.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!