MATLAB GUI, using guide
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Masoud Kavoosi
am 14 Mär. 2019
Kommentiert: Kevin Phung
am 14 Mär. 2019
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 Kommentare
Akzeptierte Antwort
Kevin Phung
am 14 Mär. 2019
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 Kommentare
Kevin Phung
am 14 Mär. 2019
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');
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!