MATLAB GUI, using guide
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Masoud Kavoosi
el 14 de Mzo. de 2019
Comentada: Kevin Phung
el 14 de Mzo. de 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 comentarios
Respuesta aceptada
Kevin Phung
el 14 de Mzo. de 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 comentarios
Kevin Phung
el 14 de Mzo. de 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');
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!