The PARFOR loop cannot run due to the way variable 'm' is used
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ali Al-Saegh
el 4 de Sept. de 2020
Comentada: Ali Al-Saegh
el 4 de Sept. de 2020
Matlab shows "The PARFOR loop cannot run due to the way varialbe 'm' is used".
Please, how to parallelize both of the loops.
m=1;
for iClss = 1:nuClasses
for iTry = 1:nuTrials
fCreateFiless(cTrials{iTry,iClss}', iClss, parentFolder, m, samFreq);
m=m+1;
end
end
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!