|
a |
|
b/pushbutton1_CreateFcn.m |
|
|
1 |
% --- Executes during object creation, after setting all properties. |
|
|
2 |
function pushbutton1_CreateFcn(hObject, eventdata, handles) |
|
|
3 |
% hObject handle to pushbutton1 (see GCBO) |
|
|
4 |
% eventdata reserved - to be defined in a future version of MATLAB |
|
|
5 |
% handles empty - handles not created until after all CreateFcns called |
|
|
6 |
|
|
|
7 |
% Add the Axes information to the Handles |
|
|
8 |
handles.Play_Button = hObject; |
|
|
9 |
|
|
|
10 |
%Update the Message Bar |
|
|
11 |
hObject.String = 'Process Data'; |
|
|
12 |
|
|
|
13 |
% Update handles structure |
|
|
14 |
guidata(hObject, handles); |
|
|
15 |
end |