Merge 2 fields in a structure
조회 수: 2 (최근 30일)
이전 댓글 표시
After I use importdata MATLAB splits up my data for some reason. The result is 2 fields within one structure, A.data is a 6000x9 double and A.textdata is a 6000x16 cell. The goal is to have one matrix 6000 x 25. Since they have the same number of rows I figured I could combine them using
A1 = [A.data, A.textdata];
however I get the error "Error using cat Dimension must be a real positive finite integer." I am unsure if it is because some of the cells contain strings.
A1 = {A.data{:}; A.textdata{:}};
did not work either.
댓글 수: 0
답변 (1개)
Walter Roberson
2016년 9월 7일
[num2cell(A.data), A.textdata]
댓글 수: 2
Walter Roberson
2016년 9월 7일
https://www.mathworks.com/matlabcentral/answers/288265-how-do-i-display-more-than-16-columns-of-a-cell-array
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!