Matlab GUI: How to update the structure of pens?

I am working on a graphical interface. I want to store data in additional fields created in the handle structure. However, I do not know how to properly update the descriptor structure when the callback function ends. Please give some advice.

My simplified program

  • Set the number of signals (1-10). Each signal has 3 parameters.
  • Read the parameter for the selected signal from the array created in the handle structure (by default, zeros).
  • Change parameter, update array.

GUI

function simple_gui(hObject, h)

h.fig = figure(...
    'Units','pix',...
    'Position',[50 50 500 400],...
    'Visible','default',...
    'Name','GUI',...
    'NumberTitle','off',...
    'Resize','on');

table = {'1' , '2', '3' , '4', '5', '6', '7', '8', '9', '10' };

h.number = uicontrol(...
    'Units','characters',...
    'Max',10,...
    'Min',1,...
    'String',table,...
    'Style','popupmenu',...
    'Value',1,...
    'Position',[37.4 28.3846153846154 19.4 1.61538461538462],...
    'BackgroundColor',[1 1 1]);

h.edit1 = uicontrol(...
    'Units','pix',...
    'String','0',...
    'Style','edit',...
    'Position',[180 280 50 20],...
    'BackgroundColor',[1 1 1],...
    'FontSize',10);

h.edit2 = uicontrol(...
    'Units','pix',...
    'String','0',...
    'Style','edit',...
    'Position',[180 255 50 20],...
    'Children',[],...
    'FontSize',10);

h.edit3 = uicontrol(...
    'Units','pix',...
    'String','0',...
    'Style','edit',...
    'Position',[180 230 50 20],...
    'FontSize',10);

Main code:

h.parameter1 = zeros(1,10);
h.parameter2 = zeros(1,10);
h.parameter3 = zeros(1,10);
h.signal_no = 0;

h.number.Callback = {@number_Callback, h};

h.edit1.Callback = {@parameter_change_Callback, h};
h.edit2.Callback = {@parameter_change_Callback, h};
h.edit3.Callback = {@parameter_change_Callback, h};
guidata(h.fig, h);

function number_Callback(hObject,eventdata, h)
h = guidata(hObject);
h.signal_no = hObject.Value;
k = h.signal_no;
h.edit1.String = h.parameter1(k);
h.edit2.String = h.parameter2(k);
h.edit3.String = h.parameter3(k);
guidata(hObject,h);

function parameter_change_Callback(hObject,eventdata, h)
h = guidata(hObject);
k = h.signal_no;
h.parameter1(k) = str2double(h.edit1.String);
h.parameter2(k) = str2double(h.edit2.String);
h.parameter3(k) = str2double(h.edit3.String);
guidata(hObject, h);
+6
source share
1 answer

In short:

guidata(handleObject, varToStore) () GUI . handleObject - , , varToStore - , ; .

handle:

handles = guidata(gcbo);  % gcbo will get the callback object (instance of handle class).  
handles.propToUpdate = handles.propToUpdate+1;  
guidata(gcbo,handles);    % stores the updated struct 

:

popupmenu, , String. str2double(), , (num2str()), .

h.number.Callback = @number_Callback;

function number_Callback(hObject,~)
    h = guidata(hObject);
    h.signal_no = hObject.Value;
    k = h.signal_no;
    h.edit1.String = num2str(h.parameter1(k));
    h.edit2.String = num2str(h.parameter2(k));
    h.edit3.String = num2str(h.parameter3(k));
    guidata(hObject,h);
 end
+1

Source: https://habr.com/ru/post/1016910/


All Articles