Running two functions in Parallel

2 次查看(过去 30 天)
Aakash
Aakash 2013-8-16
Hello everyone, I have following situation: I am running a simple simulation of motion. A point mass moving at a constant velocity in XY plane. Now, I need to call a function to capture an image. Image capturing function takes about 2 seconds. I need first simulation (motion) keep on running while running the image capturing function. Is there any parallel computing tool in MATLAB that could be run without hindering simulation platform? Please advise. Many thanks.

回答(2 个)

Ken Atwell
Ken Atwell 2013-8-16
Parallel Computing Toolbox's batch capability may do the trick for you. Fire off the image capture as a batch job while performing the simulation in the main process.
  1 个评论
Aakash
Aakash 2013-8-17
Thanks very much Ken. Opening of batch program is quite time consuming!! Even for simple functions! it is taking significant time in MATLAB! This is not suitable for my first section of code. I was thinking of using 'parfor', would you be able to tell me how to set equal times for all statements inside 'parfor'. Thanks again.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2013-8-17
You cannot set equal times for statements inside parfor()
You should consider using a timer()
Note: a timer sounds like all you would need in your situation. Timers can interrupt between any two lines of MATLAB source. Unless you are doing uninterpretable real-time work in the simulation, you likely do not need parallelism.

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by