problem with parfor loop
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Is it possible to parfor this?
for iter=1:50
for i=1:100
x(:,i)= rand(3,1)
end
end
0 Commenti
Risposta accettata
Matt J
il 2 Ott 2013
Modificato: Matt J
il 2 Ott 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!