Скачиваний:
95
Добавлен:
01.05.2014
Размер:
1.29 Mб
Скачать

4.4. Исследование растекания спектра

4.4.1. Теоретические сведения:

Сигнал:x(n) = cos(2πft/T), t = 0, 1, ..15

Программа выполнена с помощью GUIDE(GUI Builder) – конструктора графического интерфейсаMatlab.

4.4.2. Графический интерфейс:

4.4.3. Текст программы:

function varargout = fig_3(varargin)

% FIG_3 M-file for fig_3.fig

% FIG_3, by itself, creates a new FIG_3 or raises the existing

% singleton*.

%

% H = FIG_3 returns the handle to a new FIG_3 or the handle to

% the existing singleton*.

%

% FIG_3('CALLBACK',hObject,eventData,handles,...) calls the local

% function named CALLBACK in FIG_3.M with the given input arguments.

%

% FIG_3('Property','Value',...) creates a new FIG_3 or raises the

% existing singleton*. Starting from the left, property value pairs are

% applied to the GUI before fig_3_OpeningFunction gets called. An

% unrecognized property name or invalid value makes property application

% stop. All inputs are passed to fig_3_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

% Copyright 2002-2003 The MathWorks, Inc.

% Edit the above text to modify the response to help fig_3

% Last Modified by GUIDE v2.5 25-Apr-2006 12:34:36

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;

gui_State = struct('gui_Name', mfilename, ...

'gui_Singleton', gui_Singleton, ...

'gui_OpeningFcn', @fig_3_OpeningFcn, ...

'gui_OutputFcn', @fig_3_OutputFcn, ...

'gui_LayoutFcn', [] , ...

'gui_Callback', []);

if nargin && ischar(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 fig_3 is made visible.

function fig_3_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 fig_3 (see VARARGIN)

% Choose default command line output for fig_3

handles.output = hObject;

% Update handles structure

guidata(hObject, handles);

% This sets up the initial plot - only do when we are invisible

% so window can get raised using fig_3.

if strcmp(get(hObject,'Visible'),'off')

genSIN_1(handles);

end

% UIWAIT makes fig_3 wait for user response (see UIRESUME)

% uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.

function varargout = fig_3_OutputFcn(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 command line output from handles structure

varargout{1} = handles.output;

% --- Executes on button press in pushbutton1.

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)

genSIN_1(handles);

%popup_sel_index = 1;%get(handles.popupmenu1, 'Value');

%switch popup_sel_index

% case 1

% plot(rand(5));

% case 2

% plot(sin(1:0.01:25.99));

% case 3

% bar(1:.5:10);

% case 4

% plot(membrane);

% case 5

% surf(peaks);

%end

% --------------------------------------------------------------------

function FileMenu_Callback(hObject, eventdata, handles)

% hObject handle to FileMenu (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% --------------------------------------------------------------------

function OpenMenuItem_Callback(hObject, eventdata, handles)

% hObject handle to OpenMenuItem (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

file = uigetfile('*.fig');

if ~isequal(file, 0)

open(file);

end

% --------------------------------------------------------------------

function PrintMenuItem_Callback(hObject, eventdata, handles)

% hObject handle to PrintMenuItem (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

printdlg(handles.figure1)

% --------------------------------------------------------------------

function CloseMenuItem_Callback(hObject, eventdata, handles)

% hObject handle to CloseMenuItem (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...

['Close ' get(handles.figure1,'Name') '...'],...

'Yes','No','Yes');

if strcmp(selection,'No')

return;

end

delete(handles.figure1)

% --- Executes on selection change in popupmenu1.

function popupmenu1_Callback(hObject, eventdata, handles)

% hObject handle to popupmenu1 (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 popupmenu1 contents as cell array

% contents{get(hObject,'Value')} returns selected item from popupmenu1

% --- Executes during object creation, after setting all properties.

function popupmenu1_CreateFcn(hObject, eventdata, handles)

% hObject handle to popupmenu1 (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

%set(hObject, 'String', {'plot(rand(5))', 'plot(sin(1:0.01:25))', 'bar(1:.5:10)', 'plot(membrane)', 'surf(peaks)'});

function edit2_Callback(hObject, eventdata, handles)

% hObject handle to edit2 (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 edit2 as text

% str2double(get(hObject,'String')) returns contents of edit2 as a double

% --- Executes during object creation, after setting all properties.

function edit2_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit2 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton4.

function pushbutton4_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

function edit3_Callback(hObject, eventdata, handles)

% hObject handle to edit3 (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 edit3 as text

% str2double(get(hObject,'String')) returns contents of edit3 as a double

% --- Executes during object creation, after setting all properties.

function edit3_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit3 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function edit4_Callback(hObject, eventdata, handles)

% hObject handle to edit4 (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 edit4 as text

% str2double(get(hObject,'String')) returns contents of edit4 as a double

% --- Executes during object creation, after setting all properties.

function edit4_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit4 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% unsere

function genSIN_1(handles)

Tstr = get(handles.edit2, 'String');

Tnum = str2num(Tstr);

TD = 0:15; % время для дискретного сигнала

TA = 0:0.1:16; % время для условно аналогового сигнала

XLD = cos(2*pi*TD/Tnum); % дискретный сигнал

XLA = cos(2*pi*TA/Tnum); % аналоговый сигнал

Y = fft(XLD); % спектр дискретного сигнала

% построение графиков

axes(handles.axes1);

cla;

stem(TD, XLD);

hold on;

plot(TA, XLA, '--');

hold off;

xlim([0 16]);

axes(handles.axes3);

cla;

stem(TD, abs(Y));

function edit5_Callback(hObject, eventdata, handles)

% hObject handle to edit5 (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 edit5 as text

% str2double(get(hObject,'String')) returns contents of edit5 as a double

% --- Executes during object creation, after setting all properties.

function edit5_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit5 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton5.

function pushbutton5_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

Tstr = get(handles.edit2, 'String');

Tnum = str2num(Tstr);

if(Tnum > 1)

Tnum = Tnum - 1;

end

set(handles.edit2, 'String', Tnum);

% --- Executes on button press in pushbutton6.

function pushbutton6_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton6 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

Tstr = get(handles.edit2, 'String');

Tnum = str2num(Tstr);

Tnum = Tnum + 1;

set(handles.edit2, 'String', Tnum);

function edit6_Callback(hObject, eventdata, handles)

% hObject handle to edit6 (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 edit6 as text

% str2double(get(hObject,'String')) returns contents of edit6 as a double

% --- Executes during object creation, after setting all properties.

function edit6_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit6 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

4.4.4. Файлы, относящиеся к програме:

- fig_3.fig– файл графического интерфейса

- fig_3.m– файл с функциями, обрабатывающими графическую форму

4.4.5. Запуск программы:

>> fig_3

4.4.6. Вывод:

Если значения сигнала в начальный и конечный момент временнного интервала сильно различаются, то при периодическом продолжении на стыках соотвествующих временных интервалов возникают скачки, из-за которых спектр “растекается” (спектр расширяется и появляются несуществующие частоты). Это явление называется растеканием спектра. Для его уменьшения используютсявесовые функции (окна), которые спадают к краям рассматриваемого временного отрезка.

Вообщем, из проведенных тестов видно, что если значения дискретного сигнала на концах временного интервала отличаются незначительно, то спектр почти не растекается.

Соседние файлы в папке Лабораторная работа 2(9)
  • #
    01.05.2014621 б56sigprefs.mat
  • #
    01.05.2014264.17 Кб56startup.spt
  • #
    01.05.2014313 б57t_meandr.m
  • #
    01.05.2014896 б57t_rastspectr.m
  • #
    01.05.2014261 б57t_windows.m
  • #
    01.05.20141.29 Mб95лаб2_matlab.doc