Array input through MATALB - GUI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Suraj Srivastava
am 18 Feb. 2015
Kommentiert: Suraj Srivastava
am 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 Kommentare
Akzeptierte Antwort
Giorgos Papakonstantinou
am 18 Feb. 2015
Bearbeitet: Giorgos Papakonstantinou
am 18 Feb. 2015
i.e.
f = figure;
d = randi(100, 7, 3);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true]);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!