Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我查看了过去的答案,但我可以找到一个为我的案例提供明确答案的答案(很奇怪,因为它看起来很简单)。
我有一个 mxn 单元阵列,每个阵列都有一个 tx1 矩阵,我想将其重塑为 mxnxt 3D 矩阵。我看到了一些 permute 和 remat 的例子,但没有得到我的答案。
谢谢!
你只需要cell2mat一点permute:
cell2mat
permute
c = repmat({(1:4).'},2,3); %'// example cell array result = permute(cell2mat(permute(c,[3 1 2])), [2 3 1])