Borrar filtros
Borrar filtros

Run a script file multiple times and save variable values to array

4 visualizaciones (últimos 30 días)
Evan Scope Crafts
Evan Scope Crafts el 27 de Feb. de 2019
Comentada: Jan el 28 de Feb. de 2019
I have a script file that I would like to run 50 times. Each time the script file is executed I would like certain variables generated by the script file to be saved in an array I have created in the driver file. I have tried creating a driver file with a for loop and using the control variable for the for loop to index the array entries, but Matlab seems to not let me access the control variable (or any other variables in the driver file). Is there an easy way to do this? I am familiar with diary but the text output is tedious to manually convert to an array.

Respuestas (1)

Jan
Jan el 27 de Feb. de 2019
What is a "driver file"? "Matlab seems to not let me access the control variable" - what does this mean? What do you observe? Which code do you try?
It is easy actually:
% YourScript.m
% Your script (prefer functions for a clean programming style!)
a = rand
and the main function for the loop:
function yourLoop
result = zeros(1, 50);
for k = 1:50
run('YourScript')
result(k) = a;
end
end
  5 comentarios
Evan Scope Crafts
Evan Scope Crafts el 28 de Feb. de 2019
Wow can't believe I didn't catch that. Thanks for helping an undergraduate out
Jan
Jan el 28 de Feb. de 2019
@Evan: clear is rarely useful in Matlab, but it causes troubles frequently.

Iniciar sesión para comentar.

Categorías

Más información sobre Debugging and Analysis 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