display excel data in guitable ?
조회 수: 3 (최근 30일)
이전 댓글 표시
I've an excel data sheet.. how can i dispaly the data in to uitable in GUI. Enclosure contains excel sheet and its screenshot is also given..
The GUI figure is given, on pressing the pushbutton i want to display the data in uitable...
Thanks in advance
댓글 수: 0
답변 (1개)
Ji Hoon Jeong
2018년 9월 4일
편집: Ji Hoon Jeong
2018년 9월 4일
First load the data file (i.e. xls file) And feed it into uitable with name-value pair.
[~, ~, raw] = xlsread('Book1.xlsx');
uitable('data',raw);
I hope you are familiar with the button event function. If you need further help, please reply.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!