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
댓글 수: 0
채택된 답변
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
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 Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!