Borrar filtros
Borrar filtros

View changing values in GUI

2 visualizaciones (últimos 30 días)
Simone Leon
Simone Leon el 27 de Sept. de 2011
Presently I am trying to build a GUI. At the moment I have variables in the workspace in a 100 x 8 matrix. As I simulate the system these variables would change. They are not fixed.
I would like to use a table to view these variables. At present the uitable I have could only view the values but the values do not change when the system is simulated again. I would like the values to change every time the system is simulated.
How can I do this? There is the option to choose "Do not set data value and leave the table empty?"
But after I select this option I do not know what to do next from here.

Respuestas (1)

Walter Roberson
Walter Roberson el 27 de Sept. de 2011
set(YourUiTableHandle, 'Data', num2cell(YourMatrix))
  3 comentarios
Simone Leon
Simone Leon el 28 de Sept. de 2011
Should my CellEditCallback look like this?
% --- Executes when entered data in editable cell(s) in uitable4.
function uitable1_CellEditCallback(hObject, eventdata, handles)
set(YourUiTableHandle, 'Data', num2cell(YourMatrix))
Walter Roberson
Walter Roberson el 28 de Sept. de 2011
'Data' is a literal string used as a keyword.
num2cell() is a MATLAB function.
YourMatrix is the matrix whose contents you want to put in to the UI Table.
YourUiTableHandle should be the handle of the uitable.
You would *not* put this in your CellEditCallback, because CellEditCallback is used when the user makes a change to the table, whereas what you want to just display the current values you have assigned. So each time you have new values to display, you would execute the above to change the display (if you are computing in a loop you may need to use a drawnow() call to get the GUI to update the screen.)

Iniciar sesión para comentar.

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by