complexpogui.m
来自「非常好的数字处理教程」· M 代码 · 共 1,157 行 · 第 1/3 页
M
1,157 行
function varargout = complexpogui(varargin)% COMPLEXPOGUI M-file for complexpogui.fig% COMPLEXPOGUI, by itself, creates a new COMPLEXPOGUI or raises the existing% singleton*.%% H = COMPLEXPOGUI returns the handle to a new COMPLEXPOGUI or the handle to% the existing singleton*.%% COMPLEXPOGUI('CALLBACK',hObject,eventData,handles,...) calls the local% function named CALLBACK in COMPLEXPOGUI.M with the given input arguments.%% COMPLEXPOGUI('Property','Value',...) creates a new COMPLEXPOGUI or raises the% existing singleton*. Starting from the left, property value pairs are% applied to the GUI before complexpogui_OpeningFunction gets called. An% unrecognized property name or invalid value makes property application% stop. All inputs are passed to complexpogui_OpeningFcn via varargin.%% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one% instance to run (singleton)".%% See also: GUIDE, GUIDATA, GUIHANDLES% Edit the above text to modify the response to help complexpogui% Last Modified by GUIDE v2.5 08-Apr-2004 13:35:30% Begin initialization code - DO NOT EDITgui_Singleton = 1;gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_OpeningFcn', @complexpogui_OpeningFcn, ... 'gui_OutputFcn', @complexpogui_OutputFcn, ... 'gui_LayoutFcn', @complexpogui_LayoutFcn, ... 'gui_Callback', []);if nargin & isstr(varargin{1}) gui_State.gui_Callback = str2func(varargin{1});endif nargout [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});else gui_mainfcn(gui_State, varargin{:});end% End initialization code - DO NOT EDIT% --- Executes just before complexpogui is made visible.function complexpogui_OpeningFcn(hObject, eventdata, handles, varargin)% This function has no output args, see OutputFcn.% 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 command line arguments to complexpogui (see VARARGIN)% Choose default command line output for complexpogui handles.output = hObject; guidata(hObject, handles); set(gcf,'UserData',handles); complexpofn;if (nargin > 3) datastruct = varargin{1}; % datastruct = {audiodata,Fs}; complexpofn('readinput',datastruct);end% --- Outputs from this function are returned to the command line.function varargout = complexpogui_OutputFcn(hObject, eventdata, handles) varargout{1} = handles.output;% --------------------------------------------------------------------function CloseMenuItem_Callback(hObject, eventdata, handles) complexpofn 'close';% --------------------------------------------------------------------function FileMenu_Callback(hObject, eventdata, handles)% hObject handle to Untitled_1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% --- Executes on button press in grid_cart.function grid_cart_Callback(hObject, eventdata, handles)% hObject handle to grid_cart (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,'Value') returns toggle state of grid_cart complexpofn 'gridcart';% --------------------------------------------------------------------function help_Callback(hObject, eventdata, handles)% hObject handle to help (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) complexpofn 'help';% --- Executes during object creation, after setting all properties.function x_point1_CreateFcn(hObject, eventdata, handles)% hObject handle to x_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction x_point1_Callback(hObject, eventdata, handles)% hObject handle to x_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of x_point1 as text% str2double(get(hObject,'String')) returns contents of x_point1 as a double complexpofn('update','x1');% --- Executes during object creation, after setting all properties.function y_point1_CreateFcn(hObject, eventdata, handles)% hObject handle to y_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction y_point1_Callback(hObject, eventdata, handles)% hObject handle to y_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of y_point1 as text% str2double(get(hObject,'String')) returns contents of y_point1 as a double complexpofn('update','y1');% --- Executes during object creation, after setting all properties.function r_point1_CreateFcn(hObject, eventdata, handles)% hObject handle to r_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction r_point1_Callback(hObject, eventdata, handles)% hObject handle to r_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of r_point1 as text% str2double(get(hObject,'String')) returns contents of r_point1 as a double complexpofn('update','r1');% --- Executes during object creation, after setting all properties.function t_point1_CreateFcn(hObject, eventdata, handles)% hObject handle to t_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction t_point1_Callback(hObject, eventdata, handles)% hObject handle to t_point1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of t_point1 as text% str2double(get(hObject,'String')) returns contents of t_point1 as a double complexpofn('update','t1');% --- Executes during object creation, after setting all properties.function x_point2_CreateFcn(hObject, eventdata, handles)% hObject handle to x_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction x_point2_Callback(hObject, eventdata, handles)% hObject handle to x_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of x_point2 as text% str2double(get(hObject,'String')) returns contents of x_point2 as a double complexpofn('update','y2');% --- Executes during object creation, after setting all properties.function y_point2_CreateFcn(hObject, eventdata, handles)% hObject handle to y_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction y_point2_Callback(hObject, eventdata, handles)% hObject handle to y_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of y_point2 as text% str2double(get(hObject,'String')) returns contents of y_point2 as a double complexpofn('update','y2');% --- Executes during object creation, after setting all properties.function r_point2_CreateFcn(hObject, eventdata, handles)% hObject handle to r_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction r_point2_Callback(hObject, eventdata, handles)% hObject handle to r_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of r_point2 as text% str2double(get(hObject,'String')) returns contents of r_point2 as a double complexpofn('update','r2');% --- Executes during object creation, after setting all properties.function t_point2_CreateFcn(hObject, eventdata, handles)% hObject handle to t_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction t_point2_Callback(hObject, eventdata, handles)% hObject handle to t_point2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of t_point2 as text% str2double(get(hObject,'String')) returns contents of t_point2 as a double complexpofn('update','t2');% --- Executes during object creation, after setting all properties.function result_text_CreateFcn(hObject, eventdata, handles)% hObject handle to result_text (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction result_text_Callback(hObject, eventdata, handles)% hObject handle to result_text (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of result_text as text% str2double(get(hObject,'String')) returns contents of result_text as a double% --- Executes during object creation, after setting all properties.function x_result_CreateFcn(hObject, eventdata, handles)% hObject handle to x_result (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction x_result_Callback(hObject, eventdata, handles)% hObject handle to x_result (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of x_result as text% str2double(get(hObject,'String')) returns contents of x_result as a double% --- Executes during object creation, after setting all properties.function y_result_CreateFcn(hObject, eventdata, handles)% hObject handle to y_result (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));endfunction y_result_Callback(hObject, eventdata, handles)% hObject handle to y_result (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of y_result as text% str2double(get(hObject,'String')) returns contents of y_result as a double% --- Executes during object creation, after setting all properties.function r_result_CreateFcn(hObject, eventdata, handles)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?