필터 지우기
필터 지우기

bsxfun to multiply matrix with vector multiple times in for loop --> how faster?

조회 수: 2 (최근 30일)
T
T 2017년 3월 6일
편집: Matt J 2017년 3월 10일
I have a 2D matrix of size NxN, and each row I am multiplying with a 1xN vector with bsxfun in a for loop like this:
for k=1:1000
b(k)=mean(bsxfun(@times,tb_filter2d,d(k,:)),2);
end
Is there a way to speed this up? d is of the size 1000xN.
Thank you!!
  댓글 수: 4
James Tursa
James Tursa 2017년 3월 6일
If tb_filter2d is your NxN matrix, how does this even work since the result of the RHS is a vector and you are assigning it to a scalar element location b(k)?
Rik
Rik 2017년 3월 6일
Is there a reason you can't use something like meshgrid to remove the loop?

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

답변 (2개)

Ankita Nargundkar
Ankita Nargundkar 2017년 3월 9일
1. If you are on MATLAB R2016b, you can use operators directly instead of bsxfun. Refer to this example
2. You can use repmat or reshape to optimize. Refer to this link
Something on similar lines, https://www.mathworks.com/matlabcentral/answers/210352-optimize-speed-up-a-big-and-slow-matrix-operation-with-addition-and-bsxfun

Matt J
Matt J 2017년 3월 10일
편집: Matt J 2017년 3월 10일
This shouldn't require more than a single vector-matrix multiplication,
result =(tb_filter2d/N)*d.';

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by