Array input through MATALB - GUI
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Suraj Srivastava
el 18 de Feb. de 2015
Comentada: Suraj Srivastava
el 18 de Feb. de 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 comentarios
Respuesta aceptada
Giorgos Papakonstantinou
el 18 de Feb. de 2015
Editada: Giorgos Papakonstantinou
el 18 de Feb. de 2015
i.e.
f = figure;
d = randi(100, 7, 3);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true]);
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!