How can i execute two callback concurrently

8 vues (au cours des 30 derniers jours)
Borison ningthoujam
Borison ningthoujam le 19 Mai 2018
Commenté : Walter Roberson le 20 Mai 2018
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.

Réponse acceptée

Walter Roberson
Walter Roberson le 19 Mai 2018
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 commentaires
Borison ningthoujam
Borison ningthoujam le 20 Mai 2018
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 le 20 Mai 2018
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by