필터 지우기
필터 지우기

vectorize a block matrix calculation

조회 수: 1 (최근 30일)
Luis Isaac
Luis Isaac 2017년 4월 28일
편집: Matt J 2017년 4월 28일
Dear;
I want calculate a big matrix composed of blocks, for that I use the following code:
k=length(a); % Long vector
n=size(xx,1); % 2D or 3D matrix always the same
TP=repmat(zeros(size(xx),k,1); % Big matriz composed by blocks
for i=1:k
TP((i-1)*n+1:i*n,:)=a(i)*xx; % Block i of TP matrix
end
Is there any way to vectorize this code and speed up the calculation Many thanks;

채택된 답변

Matt J
Matt J 2017년 4월 28일
TP=kron(a(:),xx);
  댓글 수: 3
Andrei Bobrov
Andrei Bobrov 2017년 4월 28일
TP = reshape(bsxfun(@plus,xx',reshape(a,1,1,[])),size(x,2),[])'
Matt J
Matt J 2017년 4월 28일
편집: Matt J 2017년 4월 28일
You could also use my attached tensorfun() utility.
TP=tensorfun(@plus,a(:),xx);
It allows you to do similar things for any block structure and any bi-operand operation (@plus, @minus, etc...) supported by bsxfun.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Block Libraries에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by