Disply data in row (uitable)
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
When I am storing 5 variables in uitable using this code: cData = {complete; AInfo; BInfo; CInfo; DInfo}; set(handles.infoTable, 'data', cData);
The data is displayed in the in one column but not in a row. How can I do it?
Thanks.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 2월 6일
편집: Azzi Abdelmalek
2013년 2월 6일
Maybe you should use ( , ) instead of ( ; )
cData = {complete, AInfo,BInfo, CInfo, DInfo};
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!