problem with parfor loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
freebil
el 2 de Oct. de 2013
Comentada: Matt J
el 3 de Oct. de 2013
Is it possible to parfor this?
for iter=1:50
for i=1:100
x(:,i)= rand(3,1)
end
end
0 comentarios
Respuesta aceptada
Matt J
el 2 de Oct. de 2013
Editada: Matt J
el 2 de Oct. de 2013
Sure, especially since the outer loop is not doing anything and can be abandoned.
parfor i=1:100
x(:,i)= rand(3,1)
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!