Is it possible to do operations on 3D matrices without explicitly creating one?

조회 수: 1 (최근 30일)
This might sound as a weird question but consider the following code:
A = zeros(1,4,2);
delta = [-1 -1 -1 -1; 2 2 2 2];
W = ones(3,4);
A(1,:,:) = delta';
bsxfun(@times, W, A); % gives
The last line results in the correct result that I wanted/intended:
ans(:,:,1) =
-1 -1 -1 -1
-1 -1 -1 -1
-1 -1 -1 -1
ans(:,:,2) =
2 2 2 2
2 2 2 2
2 2 2 2
however, it seems really silly to me to have to create the temporary 3D matrix (3rd order tensor) to do this because delta *is* a 3D tensor (its just a 1x2x4 tensor). Using the fact that it is a 3D tensor, can we give it to bsxfun in order to treat it like the 3D tensor it is and give the above computation without creating that dummy variable that doesn't do anything?

답변 (1개)

John D'Errico
John D'Errico 2016년 5월 5일
편집: John D'Errico 2016년 5월 5일
I think you are asking why did you need to create A? You don't. You could do this:
delta = [-1 -1 -1 -1; 2 2 2 2];
W = ones(3,4);
bsxfun(@times, W, reshape(delta.',[1,flip(size(delta))]))
It might be easier to read with an intermediate variable though.
  댓글 수: 1
Brando Miranda
Brando Miranda 2016년 5월 5일
I guess another thing that I was sort of worried is that delta might be in GPU so it seemed really silly to create new array just to add a dummy dimension that the 3D matrix/tensor already had. Does ur solution avoid that issue? (or maybe it doesn't matter)

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

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by