Effacer les filtres
Effacer les filtres

How to create a big table

1 vue (au cours des 30 derniers jours)
Light
Light le 29 Mai 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 - - -

Réponses (1)

Image Analyst
Image Analyst le 29 Mai 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);

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by