How to save a variable which changes runtime in Matlab?

6 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Chandra Kurniawan
Chandra Kurniawan el 26 de En. de 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 comentarios
Zina
Zina el 26 de En. de 2012
(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 el 26 de En. de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by