Run a script multiple times and save outputs

I have a script that at the end outputs a 1x5 array named 'g' with 5 values. each time i run the script, the values of 'g' will change. what can i use to run my script say, 50 times, and obtain a 50x5 array of all my different runs of 'g'?

 採用された回答

Stephan
Stephan 2019 年 10 月 19 日
編集済み: Stephan 2019 年 10 月 19 日

0 投票

Write a function or a second script which calls your script in a for loop and save the results in a new line of a result matrix for every run of your loop.

3 件のコメント

Tomás
Tomás 2019 年 10 月 19 日
I initially tried this and i got it to work, but now im having trouble:
clc;clear;
gs=ones(5,5); %'gs' is where i will store each 1x5 'g'
for c = 1:5 %i would like to run 'problem3.m' 5 times and store each g in gs
run('problem3.m');
gs(c,:)=g;
end
Im getting the error:
Undefined function or variable 'c'.
Error in helploop (line 7)
gs(c,:)=g;
Tomás
Tomás 2019 年 10 月 19 日
編集済み: Tomás 2019 年 10 月 19 日
My script (problem3.m) had
clc; clear;
at the beginning so removing that solved the issue.
Gustavo Rojas-Matute
Gustavo Rojas-Matute 2020 年 8 月 6 日
Hi Tomas, I am trying to do the same you did but when I try to fill the matrix: (c:,) it says:
Unrecognized function or variable 'c'.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeEntering Commands についてさらに検索

製品

リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by