Find smallest cell in cell array

10 Ansichten (letzte 30 Tage)
Philip
Philip am 19 Apr. 2012
Is there a way to find the smallest sized cell in a cell array?
Thanks!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 19 Apr. 2012
What is "size" in this context? Number of rows? Number of columns? Number of elements? Storage requirement?
Which is smaller:
'fdoafodsif-0dsi0-0-dfs0-fds0--ds'
or
struct('foo',3,'bar',7)
?
  4 Kommentare
Philip
Philip am 19 Apr. 2012
That worked perfectly, thanks so much!
Jan
Jan am 19 Apr. 2012
Or slightly faster:
[minsize, minidx] = min(cellfun('size', YourCell, 2));

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by