group every ten cell array

5 views (last 30 days)
pasta pontikaki
pasta pontikaki on 18 May 2019
Edited: pasta pontikaki on 20 May 2019
Hi all i have a cell array 1x180 and i want to group by every 10 cells
conc.PNG
For example i want the elements from 1 cell till 10 get grouped,11:21, 22:32 etc..
So the new cell should be 1x18
How can i do this?

Accepted Answer

Adam Danz
Adam Danz on 18 May 2019
Edited: Adam Danz on 18 May 2019
c = cell(1,180); % the original 1x180 cell array
newCell = mat2cell(c,1,repmat(10,1,18)); %the new nested cell array
  5 Comments
Adam Danz
Adam Danz on 19 May 2019
Edited: Adam Danz on 19 May 2019
Yeah, you can still concatenate them vertically but you'd need to pad the shorter vectors. Here are both methods:
Concatenate horizontally
newCellMerge = cellfun(@(x)[x{:}],newCell, 'UniformOutput', false);
Concatenate vertically, pad with NaN values at the end of short vectors
newCellMerge = cell(size(newCell));
for i = 1:length(newCell)
len = cellfun(@length, newCell{i});
cellPad = cellfun(@(x,y)padarray(x',y,NaN,'post')',newCell{i}, num2cell(max(len)-len),'UniformOutput',false)';
newCellMerge{i} = cell2mat(cellPad);
end
pasta pontikaki
pasta pontikaki on 20 May 2019
Edited: pasta pontikaki on 20 May 2019
please sir with all duly respect could you please answer in this question if you know
I will realy appreciate this it is a matter of life or death for my homework

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!