C = arrayfun(@(x)rand(randi([1 20],1,2)),(1:8)','un',0);% example [s,d] = cellfun(@size,C); out = max([s,d]); Answer from Andrei Bobrov on mathworks.com
🌐
MathWorks
mathworks.com › matlabcentral › answers › 16083-is-there-any-limitation-for-capacity-of-cell-arrays
Is there any limitation for capacity of cell arrays? - MATLAB Answers - MATLAB Central
September 18, 2011 - I don't think cell arrays have any specific memory limitations, beyond the usual restrictions that would happen due to system memory, etc. You can read more details here: http://www.mathworks.com/help/techdoc/matlab_prog/brh72ex-2.html
🌐
MathWorks
mathworks.com › matlabcentral › answers › 2025-matlab-max-array-size
Matlab max array size - MATLAB Answers - MATLAB Central
February 25, 2011 - How can i change max matlab array size? Or why this error occurs? I tried to change type of array to int or single, but it didn't works. ... Sign in to comment. Sign in to answer this question. ... If you're on a Windows machine, type memory to see what the maximum available variable space is.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 316938-how-to-find-the-max-of-a-cell-of-a-cell-array
How to find the max of a cell of a cell array - MATLAB Answers - MATLAB Central
December 15, 2016 - There is certainly no need to store the maxima in a cell array - that's an unnecessary complication. ... Sign in to comment. Sign in to answer this question. Find more on Data Type Conversion in Help Center and File Exchange ... Find the treasures in MATLAB Central and discover how the community can help you!
🌐
MathWorks
mathworks.com › matlab › language fundamentals › data types › cell arrays
cell - Cell array - MATLAB
Starting in R2021b, if the entire contents of an array do not fit in the display, MATLAB shows as much of the array as space allows instead of the size and data type. For example, as of R2021b, MATLAB displays partial contents of a cell that contains an array of 100 double values.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 36600-how-to-find-the-maximum-length-between-few-cell-arrays
how to find the maximum length between few cell arrays - MATLAB Answers - MATLAB Central
April 26, 2012 - the 5 vtec data have to follow according the highest length of ut and seems the vtec data dimension are not same it must filled up with NaN or 0. ... https://www.mathworks.com/matlabcentral/answers/36600-how-to-find-the-maximum-length-between-few-cell-arrays#comment_75840
🌐
MathWorks
mathworks.com › matlabcentral › answers › 276149-how-to-find-max-min-average-values-from-a-cell-array
How to find max,min,average values from a cell array? - MATLAB Answers - MATLAB Central
March 30, 2016 - https://www.mathworks.com/matlabcentral/answers/276149-how-to-find-max-min-average-values-from-a-cell-array ... Hi, I have a cell array of size 1x316 which further contains multidimensional cell arrays.
Find elsewhere
🌐
MathWorks
mathworks.com › matlabcentral › answers › 284645-maximum-and-minimum-of-each-columns-of-a-cell-array
maximum and minimum of each columns of a cell array - MATLAB Answers - MATLAB Central
May 17, 2016 - I want to find maximum and minimum of each column of each data i.e data{1,1},data{1,2}.....data{1,16} ans store in a matrix so that i can plot the graph. how do i find out maximum and minimum of such cell array data and store in a a matrix? I have attached the screenshot for clear understanding. ... https://www.mathworks.com/matlabcentral/answers/284645-maximum-and-minimum-of-each-columns-of-a-cell-array#comment_367123
🌐
MathWorks
mathworks.com › matlabcentral › answers › 34297-find-the-largest-array
find the largest array - MATLAB Answers - MATLAB Central
April 2, 2012 - The documentation claims, that the string commands of CELLFUN are kept for backward compatibility only. But in fact they are "much" faster than using a function handle, when the processed cell is "large". Sign in to comment. Sign in to answer this question. MATLAB Language Fundamentals Data Types Data Type Conversion
🌐
MathWorks
mathworks.com › matlabcentral › answers › 51133-function-max-for-cell
Function Max for Cell - MATLAB Answers - MATLAB Central
November 17, 2012 - How to use function max for cell? Before I used max(b), but I am getting error and i use ([b{:}]) it looks like sum this's my code a= input ('Number of Participant :'); for c ...
🌐
MathWorks
mathworks.com › matlabcentral › answers › 321723-how-to-find-the-index-of-the-element-of-a-cell-array-which-has-the-maximum-size
How to find the index of the element of a cell array which has the maximum size - MATLAB Answers - MATLAB Central
January 24, 2017 - for a = 1:10 x{a} = xlsread(fileName, a, range); end or simply take example of a cell array in this form A = [1] [4] [6] [1 ] [5] [7] How to find the index max value of A (i.e....
🌐
MathWorks
mathworks.com › matlabcentral › answers › 258720-max-value-of-certain-row-in-cell-array
Max Value of Certain Row in Cell Array? - MATLAB Answers - MATLAB Central
December 3, 2015 - The cell array itself is 15x15 and there is a scalar value in each cell. Sorry for not clearing that up in the question. Sign in to comment. Sign in to answer this question. ... https://www.mathworks.com/matlabcentral/answers/258720-max-value-of-certain-row-in-cell-array#answer_202078