Effacer les filtres
Effacer les filtres

View changing values in GUI

2 vues (au cours des 30 derniers jours)
Simone Leon
Simone Leon le 27 Sep 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.

Réponses (1)

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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Dialog Boxes dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by