Are there any way to execute same program multiple times?
16 次查看(过去 30 天)
显示 更早的评论
I made a code called save.m. I want to execute the program many times without pushing Run button. And I want to change the code a little bit. Are there any function to execute and change a matlab code?
0 个评论
回答(1 个)
John D'Errico
2021-6-14
Um, you use a loop. This is a tool that allows you to execute the same code as many times as you wish.
But if you are changing the code each time, then no. You do NOT want to somehow programmatically change your code, saving the new function, then running it.
HOWEVER, good code would allow you to pass in whatever information you need, effectively changing the code on the fly, because your code will have been written to recognize the various parameters passed into it, and to know what to do with them.
How to do exactly what you want is impossible to know, since we cannot read your mind to know what you need to do. Essentially, you just need to learn sufficient skills in MATLAB to accomplish your goals.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!