Vectorization of double for loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am vectorizing following code,doesnt seem to work. I will appreciate any help !
aux=1;
n = sqrt(max(size(u)));
cut = n / Nx;
u = reshape(u, n, n);
for i = 0 : Nx-1
for j = 0 : Nx-1
P{aux}{1} = u(1+ i*cut: (i+1)*cut,1+ j*cut: (j+1)*cut);
aux = aux +1;
end
end
4 Commenti
Risposta accettata
Sean de Wolski
il 30 Lug 2015
Just preallocating P will speed this up a lot
P = cell(Nx^2,1)
before the loop
0 Commenti
Più risposte (0)
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!