필터 지우기
필터 지우기

How do I fill in the data table to the image so it appears uitable1?

조회 수: 1 (최근 30일)
Marquel Dwi Putranto
Marquel Dwi Putranto 2016년 4월 1일
답변: Image Analyst 2016년 4월 1일
How do I fill in the data table to the image so it appears uitable1?

답변 (2개)

Clément P
Clément P 2016년 4월 1일
Hi Marquel,
You need to use the handle of your uitable.

Image Analyst
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);

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by