run two program(infinite loop) prallel in matlab
古いコメントを表示
Hello,
how can i run two infinite loop parallel in matlab.
data listening infinite loop
while 1
while ~(iStream.available)
end
readS(iStream);
end
command sending infinite loop
while 1
userInput = input('Server: ', 's');
oStream.sendS(userInput);
end
how can i run this both infinite loop program parallel in matlab plz help me out
採用された回答
その他の回答 (1 件)
Haiko
2014 年 1 月 16 日
0 投票
Using parfor might be a solution. Your code has to be rewriten a bit. See as well the help function on parfor.
3 件のコメント
Walter Roberson
2014 年 1 月 16 日
spmd would be more appropriate than parfor for such a situation.
bsissa soufien
2015 年 5 月 31 日
hi I can modify a spin protocol source code in wireless sensor network domain to optimize energy and diminier connsommation and here is the source code of spin protocol:
Walter Roberson
2015 年 5 月 31 日
The source did not end up attached. But this would not be the right Question to attach it to as the Question does not pertain to WSN.
カテゴリ
ヘルプ センター および File Exchange で Clocks and Timers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!