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

1 visualización (últimos 30 días)
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?

Respuestas (1)

John D'Errico
John D'Errico el 5 de Mayo de 2016
Editada: John D'Errico el 5 de Mayo de 2016
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 comentario
Brando Miranda
Brando Miranda el 5 de Mayo de 2016
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)

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by