gusucode.com > 声音的处理有:LPC,FFT,共振峰,频谱源码程序 > siganlandsystemusingMatlab/SSUM/complex/complexpo.m

    function varargout = complexpo(varargin)
% COMPLEXPO M-file for complexpo.fig
%      COMPLEXPO, by itself, creates a new COMPLEXPO or raises the existing
%      singleton*.
%
%      H = COMPLEXPO returns the handle to a new COMPLEXPO or the handle to
%      the existing singleton*.
%
%      COMPLEXPO('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in COMPLEXPO.M with the given input arguments.
%
%      COMPLEXPO('Property','Value',...) creates a new COMPLEXPO or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before complexpo_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to complexpo_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 complexpo

% Last Modified by GUIDE v2.5 31-Mar-2004 09:38:21

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @complexpo_OpeningFcn, ...
                   'gui_OutputFcn',  @complexpo_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin & isstr(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if 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 complexpo is made visible.
function complexpo_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 complexpo (see VARARGIN)

% Choose default command line output for complexpo
	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 = complexpo_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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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'));
end



function 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)
% hObject    handle to r_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'));
end



function r_result_Callback(hObject, eventdata, handles)
% hObject    handle to r_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 r_result as text
%        str2double(get(hObject,'String')) returns contents of r_result as a double


% --- Executes during object creation, after setting all properties.
function t_result_CreateFcn(hObject, eventdata, handles)
% hObject    handle to t_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'));
end



function t_result_Callback(hObject, eventdata, handles)
% hObject    handle to t_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 t_result as text
%        str2double(get(hObject,'String')) returns contents of t_result as a double




% --- Executes on button press in grid_polar.
function grid_polar_Callback(hObject, eventdata, handles)
% hObject    handle to grid_polar (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_polar
	complexpofn 'gridpolar';


% --- Executes during object creation, after setting all properties.
function plotmenu_CreateFcn(hObject, eventdata, handles)
% hObject    handle to plotmenu (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: popupmenu 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'));
end


% --- Executes on selection change in plotmenu.
function plotmenu_Callback(hObject, eventdata, handles)
% hObject    handle to plotmenu (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: contents = get(hObject,'String') returns plotmenu contents as cell array
%        contents{get(hObject,'Value')} returns selected item from plotmenu
	complexpofn 'plotmenu';


% --------------------------------------------------------------------
function print_Callback(hObject, eventdata, handles)
% hObject    handle to print (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
	complexpofn 'print';