Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between cell and matrix in Matlab?

Tags:

matrix

matlab

What is the difference between cell (i.e. with { }) and matrix (i.e. with [ ]) in Matlab?

like image 881
suresh.g Avatar asked Oct 21 '12 18:10

suresh.g


People also ask

What is the difference between cell array and matrix in MATLAB?

A cell array may contain any arbitrary type of element in each cell; while a matrix requires the types of its elements to be homogeneous i.e. of the same type. As far as memory layout goes, all elements of a matrix are laid out contiguously in memory, while a cell array contains pointers to each element of the array.

What's a cell in MATLAB?

A cell array is a data type with indexed data containers called cells. Each cell can contain any type of data. Cell arrays commonly contain pieces of text, combinations of text and numbers from spreadsheets or text files, or numeric arrays of different sizes.

What does matrix mean in MATLAB?

The most basic MATLAB® data structure is the matrix. A matrix is a two-dimensional, rectangular array of data elements arranged in rows and columns. The elements can be numbers, logical values ( true or false ), dates and times, strings, or some other MATLAB data type. Even a single number is stored as a matrix.

How do you turn a cell into a matrix?

A = cell2mat( C ) converts a cell array into an ordinary array. The elements of the cell array must all contain the same data type, and the resulting array is of that data type. The contents of C must support concatenation into an N-dimensional rectangle.


1 Answers

There are several differences between a cell array and a matrix in MATLAB:

  • A cell array may contain any arbitrary type of element in each cell; while a matrix requires the types of its elements to be homogeneous i.e. of the same type.

  • As far as memory layout goes, all elements of a matrix are laid out contiguously in memory, while a cell array contains pointers to each element of the array. This can be important when considering things like cache locality for high performance code.

  • The flip side of point 2 is that when you resize a matrix every element in the matrix must be copied over to the newly allocated memory area, but in case of a cell array only a list of pointers needs to copied over. Depending on the size and type of elements you're storing, this might mean cell arrays are much faster to resize.


To illustrate the differences in memory layout, let's consider a simple example:

A = [10 20 30 40]; 

Here MATLAB creates a new matrix variable named A, allocates enough memory to hold 4 doubles (32 bytes, assuming 8 byte doubles) and assigns this memory to a pointer that points to the real part of A. (If you create a matrix of complex numbers, memory is allocated for the imaginary part also, and a separate pointer points to this memory area).

Now let's create a cell array that holds these elements:

B = cell(1, 4); B{1,1} = 10; B{1,2} = 20; B{1,3} = 30; B{1,4} = 40; 

When MATLAB executes the first statement, it creates a cell array that contains 4 pointers, each of which can point to an arbitrary type. So B is already using 16 bytes (assuming 32-bit pointers). The next line creates a 1x1 matrix containing the value 10 and assigns it to the first cell array element. The process here is similar to the one I described above for creation of a 1x4 matrix, except that the memory allocated is only large enough to hold one double (8 bytes). This is repeated for each of the remaining 3 statements. So, at the bare minimum, the second example uses 16 + 8 x 4 = 48 bytes.

Note that each variable in MATLAB also includes memory overhead for a structure called an mxArray that stores information such as dimension, data type and a lot more about that variable. I've ignored this overhead for the sake of simplicity.

like image 103
Praetorian Avatar answered Oct 18 '22 05:10

Praetorian