Can I make a Pushbutton create a new Table?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nimrodb
el 11 de Feb. de 2013
Comentada: Chris Dan
el 8 de Jul. de 2020
What I'm trying to do is: When I press a Pushbutton - a Table will be created on the Panel. Is it possible?
0 comentarios
Respuesta aceptada
Image Analyst
el 11 de Feb. de 2013
Why not just have the table there already in the panel? You can make it visible or not by doing
set(handles.panel1, 'visible', 'on');
You can send data to the table by doing
set(handles.table1, 'Data', yourDataArray);
3 comentarios
Image Analyst
el 8 de Jul. de 2020
Not sure what else to say. It takes your data, for example a double array or cell array called yourDataArray, and puts it into the table (spreadsheet) on the GUI so that the table now appears with the current values that are in your array. Basically what I said "send data to the table".
By the way, the new OOP way of doing it is:
handles.panel1.Visible = 'on'; % Make sure table is visible (not hidden/invisible).
handles.table1.Data = yourDataArray; % Send current values in variable yourDataArray to the table on the GUI.
Chris Dan
el 8 de Jul. de 2020
Okay, thanks. I understood it
Can you please help me with this question
Más respuestas (2)
Jan
el 11 de Feb. de 2013
Editada: Jan
el 11 de Feb. de 2013
Yes.
What have you tried so far and did any problems occur? You can either create the table dynamically by calling the uitable command, of you can create the table statically e.g. in GUIDE and make it invisible at first, such that the callback of the button set the visibility to 'on' only.
2 comentarios
Jan
el 11 de Feb. de 2013
Simply insert the command uitable there and look what happens. You find many examples in the net, when you search for "Matlab uitable".
Nimrodb
el 11 de Feb. de 2013
1 comentario
Image Analyst
el 11 de Feb. de 2013
Try what? Whose answer were you commenting on? This is why it's good to reply to a specific person's answer rather than posting your follow up question as an Answer in itself.
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!