How do you convert the cell within a cell to a vector?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a cell of cells. The inner cell is a 1 x 1 and contains a vector. The vector in each inner cell might be of different length. How do I convert this inner cell into an ordinary vector?
댓글 수: 0
채택된 답변
Walter Roberson
2023년 5월 7일
testcell = {{[1]} {[2 3]} {[4 5 6]}}
output = cellfun(@(C) C{1}, testcell, 'uniform', 0)
testcell{2}
output{2}
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!