Converting a structure to a matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
I'm trying to get some data from a xls spreadsheet to a matrix. At the moment I've gotten thus far:
conLogChans=importdata('Control_Log_Channel_Allocation_Drivven.xls');
conLogChans=struct2cell(conLogChans);
conLogChans=conLogChans{1,1};
But if I now try the cell2mat command I get the error:
Error using cat
Dimensions of matrices being concatenated are not consistent.
Error in cell2mat (line 83)
m{n} = cat(1,c{:,n});
I thought the error was to do with some of the cells having no data in them, so I put some data in them however the error is still appearing. Any suggestions on how to do this? The data is all strings if it makes a difference.
Thank you.
댓글 수: 0
답변 (1개)
Jan
2015년 3월 25일
The error message is clear: The array in the cell need the same number of columns, when you want to concatenate them. So check the sizes of the arrays at first.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!