Run a script multiple times and save outputs
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tomás
el 19 de Oct. de 2019
Comentada: Gustavo Rojas-Matute
el 6 de Ag. de 2020
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'?
0 comentarios
Respuesta aceptada
Stephan
el 19 de Oct. de 2019
Editada: Stephan
el 19 de Oct. de 2019
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 comentarios
Gustavo Rojas-Matute
el 6 de Ag. de 2020
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'.
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!