How to vectorize the loops
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Dear all,
Could anyone tell me how to vectorize the follow loops:
Best regards.
Yeping Sun
4 Commenti
Andrei Bobrov
il 22 Set 2016
Modificato: Andrei Bobrov
il 22 Set 2016
Your code should be:
ev = exp(dv(:))';
Hr = zeros(40,40);
for ii = 1:40
for jj = 1:40
Hr(ii,jj) = ev*delta_2(:,ii,jj);
end
end
Vectorize form see my answer in part 3.
Risposte (1)
Andrei Bobrov
il 22 Set 2016
Modificato: Andrei Bobrov
il 22 Set 2016
if dv -scalar:
out = permute(sum(delta*exp(dv)),[2,3,1]);
if dv - vector:
out = permute(sum(...
reshape(sum(bsxfun(@plus,reshape(delta,[],1),exp(dv(:)')),2),size(delta))...
),[2,3,1]);
part 3
ev = exp(dv)';
[~,n,k] = size(delta_2);
out = reshape(ev*reshape(delta_2,k,[]),n,[]);
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!