How do I convert a 3d cell array of different size to matrix?

1 view (last 30 days)
How can we convert a 3d cell array to matrice. can I get 1x10 matrices from the 1x10 cell?

Accepted Answer

Jan
Jan on 30 Nov 2020
Edited: Jan on 30 Nov 2020
M = cat(3, ETT{:});
No, this cannot create a 1x10 matrix.
  5 Comments
Jan
Jan on 1 Dec 2020
Edited: Jan on 1 Dec 2020
If you have 10 million matrices, using a cell array and an index is still the best solution. Most of all, you do not have to hardcode the names of the variables at all, so using this method is flexible by design.

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays 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!