Subscripted assignment dimension mismatch for table variable 'A'.
조회 수: 1 (최근 30일)
이전 댓글 표시
for j=1:1:P
A = raw(strcmp(data,reference),[2, 5, 6, 11:16]);
B=table2cell(A);
T(j,:)=table(B)
end
error: Subscripted assignment dimension mismatch for table variable 'A'.
댓글 수: 1
Walter Roberson
2019년 9월 7일
If the strcmp does not have exactly one true result then you get a mismatch on the number of rows of the table being assigned to.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!