Unpacking and tabulating contents of a cell array
25 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have the following cell array:

My goal is to unpack the contents of each cell and tabulate the amount of times each number occurs. My first attempt below unpacks each cell in the command window and only the final 25th cell in the workspace under 'ans':
vsel{:}
My second attempt only returns the 1st of 25 cells in a new array in the workspace:
h = size(vsel,1);
vsel = vsel{1:h,1};
My third attempt was to use a comma separated list and employ concatenation but that only appears to work on arrays where each cell is of the same dimensions:
matrix = vertcat(vsel{:});
Once I can extract this information, I plan on tabulating the amount of times each number appears in each cell. Any help would be greatly appreciated!
-Ryan
3 件のコメント
Walter Roberson
2021 年 3 月 9 日
In the posted data, the entries are all sorted and no entry occurs more than once per cell. Are those characteristics that can be counted on?
採用された回答
Walter Roberson
2021 年 3 月 9 日
all_numbers = horzcat(vsel{:});
This is the same as
all_numbers = [vsel{:}];
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!