how can I write a parallel code in Matlab?
Afficher commentaires plus anciens
hi every one, can you help me to write a program with parfor and compare the time consumed in comparing with for? The code is: matlabpool open local 7 tic parfor i = 1:100000 k=i end toc matlabpool close Elapsed time is 1.846197 seconds.
tic,for i = 1:100000 k=i end toc Elapsed time is 0.000640 seconds.
Réponse acceptée
Plus de réponses (1)
Edric Ellis
le 4 Août 2014
0 votes
Ideally, you should not open and close the pool for timing purposes - it's intended that you keep the pool open.
Catégories
En savoir plus sur Parallel Computing Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!