Array input through MATALB - GUI
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Suraj Srivastava
il 18 Feb 2015
Commentato: Suraj Srivastava
il 18 Feb 2015
Hi,
Is it possible to provide an array (7 row, 3 column)input through MATLAB GUI? I am comfortable with providing a single numeric value through GUI input box but wonder whether we can provide 2D array through MATLAB-GUI.
Looking forward to your help.
Thanks
0 Commenti
Risposta accettata
Giorgos Papakonstantinou
il 18 Feb 2015
Modificato: Giorgos Papakonstantinou
il 18 Feb 2015
i.e.
f = figure;
d = randi(100, 7, 3);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true]);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!