MATLAB: Can we use multitasking on matlab

multitaskingmultithreadingparallel computing

Hello, I saw that by using parallel programming (PCT) on a local machine, the max number of labs that can be created is the number of cores.
Using the multi-agent systems, we can create multiple agents working together and interacting with each other. I want to know if it is possible to do this on matlab, ie creating multiple threads (eg 50).
These agents must share a single processor time (work by turns).
Thank you.

Best Answer

You can run up to 12 local workers (assuming R2013b) simultaneously using Parallel Computing Toolbox. You need to modify the local cluster profile to change the number of workers from the default (which is the number of cores on your machine).
Related Question