필터 지우기
필터 지우기

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

조회 수: 4 (최근 30일)
Evan Scope Crafts
Evan Scope Crafts 2019년 2월 27일
댓글: Jan 2019년 2월 28일
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.

답변 (1개)

Jan
Jan 2019년 2월 27일
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
Evan Scope Crafts
Evan Scope Crafts 2019년 2월 28일
Wow can't believe I didn't catch that. Thanks for helping an undergraduate out
Jan
Jan 2019년 2월 28일
@Evan: clear is rarely useful in Matlab, but it causes troubles frequently.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by