How can i execute two callback concurrently

조회 수: 4 (최근 30일)
Borison ningthoujam
Borison ningthoujam 2018년 5월 19일
댓글: Walter Roberson 2018년 5월 20일
help me out guys....m working on a project for path planning of mobile robot in dynamic environment.i need two call back to execute in parallel in a GUI.the first callback is to move the obstacles and the other one is to start the robot.The problem is that when i make the obstacles move,the robot stops.i need these callbacks to run simultaneously. please help me out guys.

채택된 답변

Walter Roberson
Walter Roberson 2018년 5월 19일
This is not possible with callbacks. You will need to use parallel processing and some way of communicating between the workers. Or you will need to rewrite the two routines to do a limited amount of work and then give up control so that the other routine can make progress.
You have the difficulty that both routines need to be in continual control in order to issue movement instructions to something, unless you can create or find devices such that you can can give it endpoint coordinates and it moves the object without the MATLAB session needing to give every motor spin.
  댓글 수: 4
Borison ningthoujam
Borison ningthoujam 2018년 5월 20일
can i get an example from you....perhaps a simple gui program so that i can understand how it is implemented.....m really confused since it is my first time working in a gui
Walter Roberson
Walter Roberson 2018년 5월 20일
There is no simple example. Parallel processing takes place in separate processes, and communication between processes is hard to get right.
As Jeff Atwood once wrote, "There are two hard things in computer, science: cache invalidation, naming things, and off-by-one errors."
Cache invalidation has to do with shared asynchronous access to resources -- parallel processing in other words.
https://www.mathworks.com/matlabcentral/fileexchange/24594-parfor-progress-monitor

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by