【正文】
Executes on button press in pushbuttonF5.function pushbuttonF5_Callback(hObject, eventdata, handles)% hObject handle to pushbuttonF5 (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) z = cplxgrid(30)。cplxmap(z,atan(z),)title(39。atan(z)39。)% Executes on button press in pushbuttonF3.function pushbuttonF3_Callback(hObject, eventdata, handles)% hObject handle to pushbuttonF3 (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) z = cplxgrid(30)。cplxmap(z,z.^2)。title(39。z^239。)% Executes on button press in pushbuttonF8.function pushbuttonF8_Callback(hObject, eventdata, handles)% hObject handle to pushbuttonF8 (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)cplxroot(3)title(39。z^(1/3)39。)% Executes on button press in radiobuttonFANHUI.function radiobuttonFANHUI_Callback(hObject, eventdata, handles)% hObject handle to radiobuttonFANHUI (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hint: get(hObject,39。Value39。) returns toggle state of radiobuttonFANHUIJHSJXclose(JHS)附錄三function varargout = JHS1(varargin)% JHS1 Mfile for % JHS1, by itself, creates a new JHS1 or raises the existing% singleton*.%% H = JHS1 returns the handle to a new JHS1 or the handle to% the existing singleton*.%% JHS1(39。CALLBACK39。,hObject,eventData,handles,...) calls the local% function named CALLBACK in with the given input arguments.%% JHS1(39。Property39。,39。Value39。,...) creates a new JHS1 or raises the% existing singleton*. Starting from the left, property value pairs are% applied to the GUI before JHS1_OpeningFunction gets called. An% unrecognized property name or invalid value makes property application% stop. All inputs are passed to JHS1_OpeningF via varargin.%% *See GUI Options on GUIDE39。s Tools menu. Choose GUI allows only one% instance to run (singleton).%% See also: GUIDE, GUIDATA, GUIHANDLES% Copyright 20022003 The MathWorks, Inc.% Edit the above text to modify the response to help JHS1% Last Modified by GUIDE 08Mar2012 08:36:32% Begin initialization code DO NOT EDITgui_Singleton = 1。gui_State = struct(39。gui_Name39。, mfilename, ... 39。gui_Singleton39。, gui_Singleton, ... 39。gui_OpeningF39。, @JHS1_OpeningF, ... 39。gui_OutputF39。, @JHS1_OutputF, ... 39。gui_LayoutF39。, [] , ... 39。gui_Callback39。, [])。if nargin amp。amp。 ischar(varargin{1}) = str2func(varargin{1})。endif nargout [varargout{1:nargout}] = gui_mainf(gui_State, varargin{:})。else gui_mainf(gui_State, varargin{:})。end% End initialization code DO NOT EDIT% Executes just before JHS1 is made visible.function JHS1_OpeningF(hObject, eventdata, handles, varargin)% This function has no output args, see OutputF.% hObject handle to figure% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% varargin mand line arguments to JHS1 (see VARARGIN)% Choose default mand line output for JHS1 = hObject。% Update handles structureguidata(hObject, handles)。% UIWAIT makes JHS1 wait for user response (see UIRESUME)% uiwait()。% Outputs from this function are returned to the mand line.function varargout = JHS1_OutputF(hObject, eventdata, handles) % varargout cell array for returning output args (see VARARGOUT)。% hObject handle to figure% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Get default mand line output from handles structurevarargout{1} = 。% Executes on button press in radiobuttonJR.function radiobuttonJR_Callback(hObject, eventdata, handles)% hObject handle to radiobuttonJR (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hint: get(hObject,39。Value39。) returns toggle state of radiobuttonJRnotebookJHS1% Executes on button press in radiobuttonFANHUI.function radiobuttonFANHUI_Callback(hObject, eventdata, handles)% hObject handle to radiobuttonFANHUI (see GCBO)% eventdata reserved to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hint: get(hObject,39。Value39。) returns toggle state of radiobuttonFANHUIJHSJXclose(JHS1)41