How to reshape cell of characters to a different cell size of characters?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have this cell, which is a 32400X8, I want to reshape it to 259200X1, put all columns underneath eachother in the first row, keeping the output a cell.
I have used, Category = cat(1,cc{:}); but the output is character. I want it to be cell, as it is. thanks in advance.
댓글 수: 2
madhan ravi
2019년 3월 17일
편집: madhan ravi
2019년 3월 17일
num2cell(cat(1,cc{:}),2) % perhaps?
[comment moved to answer section]
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!