See other catalogues for
The MathWorks
You may also be interested in
Text version of the page
| | | | | | | | | | | | | | | | | |
| | | |
| | | 2 Creating a Simple GUI with GUIDE | | |
| | | |
| | | 1 Display the Surf push button callback in the M-file editor. Right-click the Surf push button in the Layout Editor to display a context menu. From that menu, select View Callbacks > Callback. | | |
| | | |
| | | The GUI M-file opens in the editor if it is not already open, and the cursor moves to the Surf push button callback, which already contains this code: | | |
| | | |
| | | Executes on button press in pushbuttons | | |
| | | |
| | | function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) 2 Add the following code to the callback immediately after the comment that begins % handles... % Display surf plot of the currently selected data. surf(handles.current_data); | | |
| | | |
| | | 3 Repeat steps 1 and 2 to add similar code to the Mesh and Contour push button callbacks. • Addthis codetothe Mesh push button callback, pushbutton2_Callback: | | |
| | | |
| | | 2-26 | | |
| | | |
| | | | | | | | | | | | | | | | | |