MATLAB GUI, using guide
조회 수: 2 (최근 30일)
이전 댓글 표시
Hey guys,
I am developing a GUI, I have a cell of results with like 30 rows and 8 columns. I want to show this cell in a table in my GUI. Please take a look at the attached photo to see which table I exactly mean.
I would greatly appreciate any help.
Thank you
댓글 수: 0
채택된 답변
Kevin Phung
2019년 3월 14일
The table has a 'Data' property.
So you can do something like this:
table_handle.Data = data_matrix
%or
set(table_handle,'Data',data_matrix)
댓글 수: 2
Kevin Phung
2019년 3월 14일
I dont work with guide, so i don't know the structure of your code.
perhaps you can set a condition where if your table is empty, you can turn the 'Visible' Property to 'off', and once youve plot your data, you can turn it 'on'.
set(handles.TableTag,'Visible','off');
추가 답변 (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!