Run parallel function.

9 ビュー (過去 30 日間)
NGOC TAM LAM
NGOC TAM LAM 2019 年 10 月 3 日
回答済み: Hari Krishna Ravuri 2019 年 12 月 5 日
HI all,
I have one function with different input values
function chooseDirectionRolling(Coord,Arrow)
for i=1:100
doRolling(Coord,Arrow); %an example of other function
Coord=Coord+i;
end
end
I want to run this function for four direction at the same time, when I do as below, it takes times
chooseDirectionRolling(rightCoord,rightArrow);
chooseDirectionRolling(leftCoord,leftArrow);
chooseDirectionRolling(upCoord,upArrow);
chooseDirectionRolling(downCoord,downArrow);
Q: How can I run at the same time for one function with different input variables?
I tried to used parfor but it did not work.

回答 (1 件)

Hari Krishna Ravuri
Hari Krishna Ravuri 2019 年 12 月 5 日
I understand that, you want to execute four functions parallely.You may consider using parfeval.The syntax of parfeval is
F = parfeval(p,fcn,numout,in1,in2,)

カテゴリ

Help Center および File ExchangeAsynchronous Parallel Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by