how to make infinite loop for parallel computing
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I need to run an infinite loop and want to use parallel computing toolbox. The toolbox only provides "parfor" so I need to make an infinite "for" loop instead of while loop. I can use "for i=1: Inf" but MatLab cuts down the Inf to some huge number. How can I make real infinite loop like "while true"??
Thanks in advance, Namshik
0 comentarios
Respuestas (2)
the cyclist
el 11 de Ag. de 2011
I don't use the parallel computing toolbox, but I wonder if you can just nest a "while true" loop inside a "for i=1:1" loop to do what you want.
0 comentarios
Walter Roberson
el 11 de Ag. de 2011
In newer versions, parfor runs the loop backwards... it is difficult to count backwards from infinity.
0 comentarios
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!