Extract only some specific elements of the arrays of a cell
26 次查看(过去 30 天)
显示 更早的评论
I have a cell, say C, where each array is also a cell. I have an index set and I want to extract cells 2, 5,1. It can be done by using . But it returns a cell where each cell is still a cell. What I want to know is how I can extract a new cell that contains cells 2,5, and 1 of the original cell, and also for each individual cell, it only contains cells 2,5, and 1. Therefore, the final cell is a cell and all individual cells are also a cell.
0 个评论
采纳的回答
Stephen23
2022-4-5
C = arrayfun(@(n)num2cell(rand(1,5)),1:5,'uni',0)
C{:}
X = [2,5,1];
D = cellfun(@(d)d(X),C(X),'uni',0)
D{:}
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!