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

1 次查看(过去 30 天)
How can we convert a 3d cell array to matrice. can I get 1x10 matrices from the 1x10 cell?

采纳的回答

Jan
Jan 2020-11-30
编辑:Jan 2020-11-30
M = cat(3, ETT{:});
No, this cannot create a 1x10 matrix.
  5 个评论
Jan
Jan 2020-12-1
编辑:Jan 2020-12-1
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by