フィルターのクリア

Run 4 m file together

1 回表示 (過去 30 日間)
armin m
armin m 2021 年 12 月 14 日
コメント済み: Walter Roberson 2021 年 12 月 14 日
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 Center および File ExchangeDevelop 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