Given the element in a matrix, how to get the corresponding element in cell array?(cell2mat, mat2cell)
26 次查看(过去 30 天)
显示 更早的评论
There is a cell array, saying A = {a_1 x b, a_2 x b, a_3 x b, ..., a_n x b}.
After doing B = cell2mat(A), I can get a matrix B, which is (a_1+a_2+...+a_n) x b.
After processing the matrix B, I get my wanted elements in B, saying they are x, which is the row index of Matrix B.
How can I get the corresponding element in original cell A?
For example, if x = 1, it must come from the first element in A. If x > a_1 && x < a_2, it must come from the second element in A.
Is there any function in matlab?
Thanks,
Zhong
0 个评论
采纳的回答
Andrei Bobrov
2012-5-10
eg
A = arrayfun(@(x)randi(12,randi(6),6),1:7,'un',0)
B = cat(1,A{:})
I=17;J=1;
B(I,J)
%solution
idx = cumsum([0 cellfun('size',A,1)])
nocell = find(idx < I,1,'last')
Ic = I - idx(nocell)
A{nocell}(Ic,J)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!