program for multicore in parallel simulation

hi,
i need matlab program for parallel simulation in multicore or single core

1 comentario

This question isn't very precise. But maybe the Parallel Computing Toolbox is what you are looking for:
if (feature('numcores') < 12)
matlabpool('open',feature('numcores'))
else
matlabpool('open',12)
end
parfor i=1:n
%your code here
end

Iniciar sesión para comentar.

Respuestas (1)

Markus Buehren
Markus Buehren el 13 de Nov. de 2018

0 votos

Hi, you can use my multicore package:
https://de.mathworks.com/matlabcentral/fileexchange/13775-multicore-parallel-processing-on-multiple-cores

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Preguntada:

el 14 de Ag. de 2012

Respondida:

el 13 de Nov. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by