How do I fill in the data table to the image so it appears uitable1?
조회 수: 1 (최근 30일)
이전 댓글 표시
How do I fill in the data table to the image so it appears uitable1?
댓글 수: 0
답변 (2개)
Image Analyst
2016년 4월 1일
You can do this
set(handles.uitable1, 'data', yourData);
You can probably use OOP and do it like this if you have R2014b or later:
handles.uitable1.data = yourData;
If you're not using GUIDE, get rid of the handles. prefix.
set(uitable1, 'data', yourData);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!