vectorizing four nested for loops

If I have a one-dimensional array A of size n and I need to create a new two-dimensional array R from the elements of array A, I can do it using two nested loops:
for i = 1:n
for j = 1:n
R(i,j) = A(i) + A(j);
end
end
Or I can use vectorization:
[i, j]=ndgrid(1:n);
R = A(i)+A(j);
If array A becomes a n by n matrix and I need to create a four dimensional array R I can still use nested loops:
for i = 1:n
for j = 1:n
for k = 1:n
for l = 1:n
r(i,j, k, l) = a(i, j) + a(k, l);
end
end
end
end
Is there a way to replace these four nested loops and use vectorization? Thanks for your help!

 채택된 답변

Geoff
Geoff 2012년 4월 3일

4 개 추천

Try this:
[i,j] = ndgrid(1:n*n);
r = reshape(a(i)+a(j), [n n n n]);

댓글 수: 4

Andrei Bobrov
Andrei Bobrov 2012년 4월 3일
+1
Max
Max 2012년 4월 3일
Thanks a lot for your help, Geoff. Would it be possible to modify your code to accommodate a slightly different manipulation with the matrices in the nested loop:
r(i,j,k,l)=a(i,j)+a(k,l)+a(i+k,j+l) for all i+k<=n and j+l<=n
Thanks!
Geoff
Geoff 2012년 4월 3일
Awwwk!! Um, I dunno. You're talking about chucking in some kind of triangular term. I have trouble thinking about that in 4 dimensions. Remember that brevity should not always be chosen over clarity.
Max
Max 2012년 4월 3일
Yeah, I shouldn't have simplified the problem in the first place. That's my bad. Thanks for your help anyway!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2012년 4월 3일

2 개 추천

variant
R = bsxfun(@plus,a,reshape(a,1,1,n,n))

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

Max
2012년 4월 3일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by