How can I change this code to be able to use parfor?
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
A=randn(5,1);
    parfor i=1:4
    B=randn(3,1);
    for t=1:size(B,1)
             for w=1:size(A,1)
                 if B(t)==A(w)
                     A(w)=A(w)+1;  
                 end
             end
    end
    end
0 commentaires
Réponses (1)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

