Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

image processing with parallel approach

2 views (last 30 days)
priyam ghosh
priyam ghosh on 23 Feb 2012
Closed: MATLAB Answer Bot on 20 Aug 2021
How to use pmode to parallelize several tasks? I'm getting all 4 cores of my processor but can't assign tasks differently in the all 4 labs? how can i make it possible?
  1 Comment
Edric Ellis
Edric Ellis on 23 Feb 2012
Please try to use more descriptive titles - this is the 6th question you've asked with the same precise title. For example, in this case, you could have called the question something like "Using PMODE to run 4 different tasks".

Answers (1)

Edric Ellis
Edric Ellis on 23 Feb 2012
In PMODE, run some code that does this:
switch labindex
case 1
runFcn1();
case 2
runFcn2();
...
end

This question is closed.

Community Treasure Hunt

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

Start Hunting!