Azzera filtri
Azzera filtri

View changing values in GUI

2 visualizzazioni (ultimi 30 giorni)
Simone Leon
Simone Leon il 27 Set 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.

Risposte (1)

Walter Roberson
Walter Roberson il 27 Set 2011
set(YourUiTableHandle, 'Data', num2cell(YourMatrix))
  3 Commenti
Simone Leon
Simone Leon il 28 Set 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 il 28 Set 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.)

Accedi per commentare.

Categorie

Scopri di più su Dialog Boxes in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by