Convert values in the cell to array using cell2mat
이전 댓글 표시
I have 72 x 1 cell named let's say output1, each cell got 8 x 1 entries. Now, I intend to store each 8 x 1 entries into the seperate array, such that finally I will get 8 x 72 array.
I used cell2mat(output1) Instead of 8 x 72 array, it stores all entries in the single column i.e. i got 576 x 1 , please let me know how to get this ..
채택된 답변
추가 답변 (1개)
Akshit Bagde
2021년 7월 16일
Convert the cell array to a row vector, and then try. It should work
cell2mat(output1')
카테고리
도움말 센터 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
