How to save a variable which changes runtime in Matlab?
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
Chandra Kurniawan
on 26 Jan 2012
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 Comments
Chandra Kurniawan
on 26 Jan 2012
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.
More Answers (0)
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!