How to save a variable which changes runtime in Matlab?

6 次查看(过去 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

采纳的回答

Chandra Kurniawan
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 个评论
Zina
Zina 2012-1-26
(in the script I have post there are only three elements but I have to face with an array of 10000 elements...so I think that probably It would be an idea to save the elemts runtime and then load only the variables I have to use...)
Chandra Kurniawan
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 CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by