Run 4 m file together

1 次查看(过去 30 天)
Hi. I have 4 m file which i should run them all in order continiously. How can i run them all together. Tnx

采纳的回答

Walter Roberson
Walter Roberson 2021-12-14
If you are using R2021b or later, you can potentially run all of them at the same time using the new backgroundpool feature.
Note that functions run in a background pool do not have access to the display.
If you just need to run them in sequence, then
while true
FirstFileName;
SecondFileName;
ThirdFileName;
FourthFileName;
end
  2 个评论
armin m
armin m 2021-12-14
I use 2014 version
Walter Roberson
Walter Roberson 2021-12-14
Then if you need to run them simultaneously you would need to use the Parallel Computing Toolbox, and use either parfeval() or parfevalOnAll() or spmd()

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by