Borrar filtros
Borrar filtros

How reshape and variable assignments are handled internally within MATLAB?

4 visualizaciones (últimos 30 días)
Does anyone know what exactly happens when you are trying to reshape a variable? So, let's say I have a large array called largeArray (of course) and I am reshaping it as follow:
largeArray=reshape(largeArray,s1,s2,s3,...,sn);
So, I am resizing largeArray and assigning it to itself. Is MATLAB recreating a whole new variable, also called largeArray, therefore, the data is actually copied? or does the MATLAB just goes internally change the dimension, without recopying the entire data?
The following code takes a long time:
n=8*1024*1024*1024/8;
largeArray=zeros(n,1);
largeArray=reshape(largeArray,64,n/64); %this line takes a long time, even longer than the above command.
%Actually so long that I force quit MATLAB. Didn't wait for it.
however, this doesn't take a long time:
n=8*1024*1024*1024/8;
largeArray=zeros(n,1);
largeArray=reshape(largeArray,32,n/32); %this returns almost immediately.
also assigning seems to behave funny:
n=8*1024*1024*1024/8;
largeArray=zeros(n,1);
newLargeArray=largeArray; % this comes back almost immediately
newLargeArray(1)=42; % This again takes long but similar to that of the zeros(n,1), i.e. when creating the array;

Respuesta aceptada

the cyclist
the cyclist el 9 de Oct. de 2015
I think at least some of your questions are answered in this documentation page about memory allocation.
For example, in your last example,
newLargeArray=largeArray;
does not require another copy of that array, because MATLAB can just reference the first one (since they are identical). But as soon as you do
newLargeArray(1)=42;
the arrays are no longer identical, so MATLAB has to make an actual copy.
Regarding the two reshape commands ... They both return very fast for me, as expected. MATLAB does not need to makes copies. (Even though they are different "shapes", they are stored in the same way, but with different indexing.)
  2 comentarios
Mohammad Abouali
Mohammad Abouali el 9 de Oct. de 2015
Thank you the cyclist.
I still don't get it why
largeArray=reshape(largeArray,32,n/32)
and
largeArray=reshape(largeArray,64,n/64)
take considerably different time. Actually this behavior prompted my question.
the cyclist
the cyclist el 9 de Oct. de 2015
I don't know why. These are effectively identical times for me in R2015b on latest OS X.

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 9 de Oct. de 2015
MATLAB generates a new descriptor with the same information as the other descriptor except for the dimensions, with both of them pointing to the same block of memory. The memory itself is not touched. The operation of creating a descriptor is done all the time in MATLAB, for the results of every operation, so it should be very fast.
  1 comentario
Mohammad Abouali
Mohammad Abouali el 9 de Oct. de 2015
Editada: Mohammad Abouali el 9 de Oct. de 2015
Thank you Walter.
So, when I do
mean(reshape(largeArray,5,[]))
in order to calculate the mean in blocks of 5 elements; a new descriptor is used and passed, but the memory is not copied then. Correct?

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices 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