How do I enter more than four rows in a GUI?
Mostra commenti meno recenti
I place the table in GUI and by default it gives me only 4 rows and 2 columns. I tries changing the number of rows by inserting more rows in Table Properties. But, it does not reflet in the GUI. Can anyone help me with this?
Thanks.
Risposta accettata
Più risposte (2)
Azzi Abdelmalek
il 27 Lug 2012
Modificato: Azzi Abdelmalek
il 27 Lug 2012
at the end of the opening function (function yourprog_OpeningFcn(hObject, eventdata, handles, varargin)): add this code
n=10;m=5; % for example
set(handles.uitable,'Data',cell(n,m)) % uitable is the tag of your table
Rinachi Garg
il 27 Lug 2012
0 voti
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!