Parfor+for+if+if How to calculate variable form last if
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Amirah Algethami
il 30 Apr 2024
Commentato: Karl
il 1 Mag 2024
See my code
parfor i = 1:n
for j=1:m
if some_condition(i)
if some_condition(i)
t=do_something(i);
b = [b;t];
end
end
end...
end
I want all b values to get out from the par
0 Commenti
Risposta accettata
Walter Roberson
il 30 Apr 2024
b = [];
parfor i = 1:n
bt = [];
for j=1:m
if some_condition(i)
if some_condition(i)
t=do_something(i);
bt = [bt;t];
end
end
end...
b = [b, bt];
end
5 Commenti
Walter Roberson
il 30 Apr 2024
m = 7;
n = 3;
b = [];
parfor i = 1:n
bt = [];
for j=1:m
if rand > 0.5
if rand > 0.5
t=i;
bt = [bt;t];
end
end
end
b = [b; bt];
end
b
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Parallel for-Loops (parfor) in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!