how to concatenate the cell data into a single matrix?

4 views (last 30 days)
All the data samples are of same length. i need to create a matrix containing all this data. there are 327 cells like this in continuation.
  3 Comments
Walter Roberson
Walter Roberson on 27 Jan 2021
What size of output are you looking for? (3*328) by 256? Or 3 x (256*328) ? Or 3 x 256 x 328 ? Or a single vector?
SHRESTH GUPTA
SHRESTH GUPTA on 27 Jan 2021
Edited: SHRESTH GUPTA on 27 Jan 2021
I need a single matrix with all data of cells i.e 3*256 arranged as coulmn wise i.e (256*3) for all 327 cells. so that finally i will end up with the dimension of (256*3)*327

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 28 Jan 2021
Single_Matrix = cell2mat(cellfun(@(C) C(:), YourCell, 'uniform', 0));
However, I am concerned about whether this will work. You said twice that you have 327 cells, but your header shows that you have a 1 x 328 cell array. Is one of the cells empty and that is why you say 327 ? If so then what do you want done about the empty cell?
  4 Comments
Walter Roberson
Walter Roberson on 28 Jan 2021
Single_Matrix = cell2mat(cellfun(@(C) C(:), Interpolated_data(1:327), 'uniform', 0));

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!