Hi All I have two large matrix and I want to calculate an expression without for loop. this expression is something like matrix d as below
f=[f1 f2 f3]
r=[r1 r2 r3]
d=[f1-r1 f2-r1 f3-r1
f1-r2 f2-r2 f3-r2
f1-r3 f2-r2 f3-r3]
can any one help me?! consider that size(f)=1*1*400 and size(r)=50*50*900 and fii=f(1,1,ii) and rjj=r(:,:,jj)

 채택된 답변

Stephen23
Stephen23 2015년 1월 20일
편집: Stephen23 2015년 1월 21일

2 개 추천

You gave this code in a comment to my other answer:
size(f)==[1,350]
size(r)==[50,50,900]
for ii=1:350
for jj=1:900
s(ii,jj) = sum(sum(sum( repmat(f(ii),[50,50,1]) - r(:,:,jj) ))) ;
end
end
You can try this instead:
A = 50*50*reshape(f,1,[]);
B = reshape(sum(sum(r,1),2),[],1);
C = bsxfun(@minus,A,B);
It produces the same result as your nested loops.

댓글 수: 1

rahman
rahman 2015년 1월 25일
tnx Stephen Cobeldick. your code was completely helpfull ;)

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

추가 답변 (2개)

Stephen23
Stephen23 2015년 1월 20일
편집: Stephen23 2015년 1월 20일

1 개 추천

This is exactly what bsxfun is for:
f = [f1,f2,f3];
r = [r1,r2,r3];
d = bsxfun(@minus,f,r.');
bsxfun calculates the output without requiring large intermediate arrays (eg using repmat). Although, depending on the size of d, you might still run out of memory...

댓글 수: 3

rahman
rahman 2015년 1월 20일
편집: rahman 2015년 1월 20일
Dear friends let me say exactly what I need ! suppose that size(f) = 1*350 ; size(r)=50*50*900; I want to calculate the S matrix as below
for ii=1:350
for jj=1:900
s(ii,jj) = sum(sum(sum( repmat(f(ii),[50,50,1]) - r(:,:,jj) ))) ;
end
end
Now, I want to calculate this matrix without for loops and by faster matrix calculation method !
Stephen23
Stephen23 2015년 1월 20일
편집: Stephen23 2015년 1월 20일
What you have now described is a different problem to the one that you posed in your original question. My code exactly solves your original question.
John D'Errico
John D'Errico 2015년 1월 20일
The heartache of those who write code - shifting specs. The correct answer to the question asked but not the question intended. :)

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

dpb
dpb 2015년 1월 20일

0 개 추천

d=repmat(f,size(r,2),1).-repmat(r.',1,size(f,2));

댓글 수: 1

rahman
rahman 2015년 1월 20일
tnx dpb but this operation needs much RAMs according to what I said ( consider that size(f)=1*1*400 and size(r)=50*50*900 and fii=f(1,1,ii) and rjj=r(:,:,jj) )

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

카테고리

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

질문:

2015년 1월 20일

댓글:

2015년 1월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by