problem with parfor loop

2 visualizaciones (últimos 30 días)
freebil
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

Respuesta aceptada

Matt J
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
  6 comentarios
freebil
freebil el 3 de Oct. de 2013
x(iter,i)= rand(1) with parfor??
Matt J
Matt J el 3 de Oct. de 2013
Editada: Matt J el 3 de Oct. de 2013
You can do it, but doing it without loops
x=rand(50,100);
will be faster.

Iniciar sesión para comentar.

Más respuestas (0)

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!

Translated by