Borrar filtros
Borrar filtros

How to create a big table

1 visualización (últimos 30 días)
Light
Light el 29 de Mayo de 2013
How can i create a big table with row name and column name. And all the blank square will be filled after my results computed. Is it possible in MATLAB.
0-1 1-2 1-4
L - - -
B - - -
R - - -
X - - -

Respuestas (1)

Image Analyst
Image Analyst el 29 de Mayo de 2013
You can use GUIDE and place a table on your figure. Or you can do it manually by calling uicontrol() and telling it you want a table. Then create a cell array and use set() to set the 'data' property.
dataTable = {'0-1', '1-2', '1-4';'L', ...... etc.
set(handles.dataTable, 'data', dataTable);

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by