A = cell(20,11);
size(A)
ans =
20 11
works for me... ? Or do you want the size of the contents of each cell?
cellsz = cellfun(@size,A,'uni',false);
*Addendum per comment:*
I still am not getting what you want.
clear A
>> A{1} = single(ones(4));
>> A{2} = uint8(toeplitz(1:10));
>> A{3} = 'Hello World'
A =
[4x4 single] [10x10 uint8] 'Hello World'
>> size(A)
ans =
1 3
>> cellsz = cellfun(@size,A,'uni',false);
>> cellsz{:}
ans =
4 4
ans =
10 10
ans =
1 11 Answer from Sean de Wolski on mathworks.com
MathWorks
mathworks.com › matlab › language fundamentals › data types › cell arrays
cell - Cell array - MATLAB
Beyond the second dimension, cell ignores trailing dimensions with a size of 1. For example, cell([3 1 1 1]) produces a 3-by-1 cell array of empty matrices. Example: sz = [2 3 4] creates a 2-by-3-by-4 cell array of empty matrices. Data Types: double | single | int8 | int16 | int32 | int64 | ...
MathWorks
mathworks.com › matlabcentral › answers › 40774-finding-size-of-a-cell
Finding size of a cell - MATLAB Answers - MATLAB Central
June 10, 2012 - https://www.mathworks.com/matlabcentral/answers/40774-finding-size-of-a-cell#answer_50414 · Cancel Copy to Clipboard · Could you nest your cell array, using the line · >> A{k}{i,j}=num2str(100*k+10*i+j); Then use · >> size(A{2}) Volkan Kandemir on 10 Jun 2012 ·
MathWorks
mathworks.com › matlabcentral › answers › 517683-problems-getting-the-size-of-a-cell-array
Problems getting the size of a cell array - MATLAB Answers - MATLAB Central
April 14, 2020 - I know that one can usually get the size of a cell array using size(). However, I am facing this particular case -- where I am trying to read data from a .txt file, and save it to a matrix -- where a particular row of the cell (data.textdata{2}) just refuses to show its actual size on using size(). I need the length to loop over data.textdata{2}. ... %% data is in data.textdata. In particular, data.textdata{2}, which is a matrix, refuses to show its size. size(data.textdata{2}) % only gives the size of the first character array · I am attaching the code and the text file. Can someone please help? ... https://www.mathworks.com/matlabcentral/answers/517683-problems-getting-the-size-of-a-cell-array#comment_827308
MathWorks
mathworks.com › matlabcentral › answers › 75980-displaying-the-size-of-cell-array
Displaying the size of cell array - MATLAB Answers - MATLAB Central
May 16, 2013 - I Have a database called DB and when I run DB at the command window I get: DB = Template: {'date' 'name' 'phone number'} Records: [1x24 struct] Well, I want it to sho...
MathWorks
mathworks.com › simulink › block and blockset authoring › author block algorithms › author blocks using matlab › author blocks using matlab functions › programming for code generation › data definition › cell arrays
Control Whether a Cell Array Is Variable-Size - MATLAB & Simulink
c becomes a variable-size homogeneous cell array with dimensions 1-by-:10. To force c to be homogeneous, but not variable-size, specify that none of the dimensions vary. For example: function y = mycell() %#codegen c = {1 [2 3]}; coder.varsize('c', [1 2], [0 0]); y = c{2}; end ...
TutorialsPoint
tutorialspoint.com › matlab › matlab_cell_arrays.htm
MATLAB - Cell Arrays
Here is the difference between ... we need to make use of braces {}. ... The cell array we created above is of size 1x2 i.e one row and two columns....
MathWorks
mathworks.com › matlabcentral › answers › 42199-adding-up-sizes-of-cell-arrays
Adding up sizes of cell arrays - MATLAB Answers - MATLAB Central
June 27, 2012 - The following command will return a 1-by-NumberOfClasses double array, where the jth element gives the number of elements composing the array stored in CellArray{j}. ... (Make sure you clear your variable sum - in your question's original code - before issuing the above command) Sign in to comment. Sign in to answer this question. MATLAB Language Fundamentals Matrices and Arrays Matrix Indexing
MathWorks
mathworks.com › matlabcentral › answers › 372172-how-to-find-the-minimum-length-of-a-cell-array
How to find the minimum length of a cell array - MATLAB Answers - MATLAB Central
December 10, 2017 - https://www.mathworks.com/matl... Edited: Stephen23 on 11 Dec 2017 · Open in MATLAB Online · Simpler and faster: min(cellfun('size',M,2)) Sign in to comment....