亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? fftplatform.asv

?? FPGA輸出數(shù)據(jù)的時(shí)頻域分析GUI界面
?? ASV
?? 第 1 頁 / 共 2 頁
字號:

% Set the axes control frame
xmin = num2str(-Fs/2);
xmax = num2str(Fs/2);
set(handles.XMin,'String',xmin);
set(handles.XMax,'String',xmax);
ymin = num2str(min(Power));
ymax = num2str(max(Power));
set(handles.YMin,'String',ymin);
set(handles.YMax,'String',ymax);

% Set the Auto State
set(handles.XAuto,'Value',1);
set(handles.YAuto,'Value',1);

set(handles.Plot,'UserData',2);

% Set EnvelopePlot Push Button enable on
set(handles.EnvelopePlot,'Enable','on');



% --- Executes on button press in EnvelopePlot.
function EnvelopePlot_Callback(hObject, eventdata, handles)
% hObject    handle to EnvelopePlot (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get the power data
ud = get(handles.FFTPlatForm,'UserData');
Power = ud.PData;
Fs=ud.Fs;

axes(handles.Figure)
N=64;
[Power_wrap t]=my_wrap(Power,Fs*1e3,N);

% Set FFTFPlot UserData the Power data
ud.PData_wrap = Power_wrap;
set(handles.FFTPlatForm,'UserData',ud);

plot(t/1e3,Power_wrap);
grid on
title('FFT Power')
xlabel('f/(kHz)')
ylabel('Magnitude in dBm')
zoom on;grid on;axis tight;hold off;% creat imag plot
set(handles.Notes,'ForegroundColor','black');
handles.str=get(handles.Notes,'String');
str = '->> FFT Power figure envelop ploting has been done.';
handles.str=[handles.str;str];
set(handles.Notes,'String',handles.str);

% Set the axes control frame
xmin = num2str(-Fs/2);
xmax = num2str(Fs/2);
set(handles.XMin,'String',xmin);
set(handles.XMax,'String',xmax);
ymin = num2str(min(Power_wrap));
ymax = num2str(max(Power_wrap));
set(handles.YMin,'String',ymin);
set(handles.YMax,'String',ymax);

% Set the Auto State
set(handles.XAuto,'Value',1);
set(handles.YAuto,'Value',1);

set(handles.Plot,'UserData',3);


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


% --- Executes during object creation, after setting all properties.
function Notes_CreateFcn(hObject, eventdata, handles)
% hObject    handle to Notes (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 XAuto.
function XAuto_Callback(hObject, eventdata, handles)
% hObject    handle to XAuto (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 XAuto
% 

p=get(handles.Plot,'UserData');

ud = get(handles.FFTPlatForm,'UserData');
TData = ud.FData;
Fs = ud.Fs;
        
if p==1
    val = get(handles.XAuto,'Value');
    if val == 1
        xmin = 0;
        xmax = (length(TData)-1)/Fs;
        set(handles.Plot,'XLim',[xmin xmax]);
        set(handles.XMin,'String',num2str(xmin));
        set(handles.XMax,'String',num2str(xmax));
    else
        XMin_Callback;
        XMax_Callback;
    end
    % Set the Auto Parameter Enable on
    set(handles.XAuto,'Enable','off');
else
    if p==2
       val = get(handles.XAuto,'Value');
       if val == 1
           xmin = -Fs/2;
           xmax = Fs/2;
           set(handles.Plot,'XLim',[xmin xmax]);
           set(handles.XMin,'String',num2str(xmin));
           set(handles.XMax,'String',num2str(xmax));
       else
           XMin_Callback;
           XMax_Callback;
       end
       % Set the Auto Parameter Enable on
       set(handles.XAuto,'Enable','off');
    end
    if p==3
       val = get(handles.XAuto,'Value');
       if val == 1
           xmin = -Fs/2;
           xmax = Fs/2;
           set(handles.Plot,'XLim',[xmin xmax]);
           set(handles.XMin,'String',num2str(xmin));
           set(handles.XMax,'String',num2str(xmax));
       else
           XMin_Callback;
           XMax_Callback;
       end
       % Set the Auto Parameter Enable on
       set(handles.XAuto,'Enable','off');
    end 
end


% Set the Auto Parameter Enable on
set(handles.XAuto,'Enable','off');


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

xmin = str2double(get(handles.XMin,'String'));
x = get(handles.Plot,'XLim');
xmax = x(2);
set(handles.Plot,'XLim',[xmin xmax]);
set(handles.XAuto,'Value',0);
% Set the Auto Parameter Enable on
set(handles.XAuto,'Enable','on');


% --- Executes during object creation, after setting all properties.
function XMin_CreateFcn(hObject, eventdata, handles)
% hObject    handle to XMin (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 XMax_Callback(hObject, eventdata, handles)
% hObject    handle to XMax (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 XMax as text
%        str2double(get(hObject,'String')) returns contents of XMax as a double

xmax = str2double(get(handles.XMax,'String'));
x = get(handles.Plot,'XLim');
xmin = x(1);
set(handles.Plot,'XLim',[xmin xmax]);
set(handles.XAuto,'Value',0);
% Set the Auto Parameter Enable on
set(handles.XAuto,'Enable','on');



% --- Executes during object creation, after setting all properties.
function XMax_CreateFcn(hObject, eventdata, handles)
% hObject    handle to XMax (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 YAuto.
function YAuto_Callback(hObject, eventdata, handles)
% hObject    handle to YAuto (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 YAuto

p=get(handles.Plot,'UserData');

if p==1
    val = get(handles.YAuto,'Value');
    if val == 1
        ud = get(handles.FFTPlatForm,'UserData');
        TData = ud.FData;
        ymin = min(TData);
        ymax = max(TData);
        set(handles.Plot,'YLim',[ymin ymax]);
        set(handles.YMin,'String',num2str(ymin));
        set(handles.YMax,'String',num2str(ymax));
    else
        YMin_Callback;
        YMax_Callback;
    end
    % Set the Auto Parameter Enable on
    set(handles.YAuto,'Enable','off');
else 
    if p==2
        val = get(handles.YAuto,'Value');
        if val == 1
            ud = get(handles.FFTPlatForm,'UserData');
            Power = ud.PData;
            ymin = min(Power);
            ymax = max(Power);
            set(handles.Plot,'YLim',[ymin ymax]);
            set(handles.YMin,'String',num2str(ymin));
            set(handles.YMax,'String',num2str(ymax));
        else
            YMin_Callback;
            YMax_Callback;
        end
        % Set the Auto Parameter Enable on
        set(handles.YAuto,'Enable','off');
    end
    if p==3
        val = get(handles.YAuto,'Value');
        if val == 1
            ud = get(handles.FFTPlatForm,'UserData');
            Power_wrap = ud.PData_wrap;
            ymin = min(Power_wrap);
            ymax = max(Power_wrap);
            set(handles.Plot,'YLim',[ymin ymax]);
            set(handles.YMin,'String',num2str(ymin));
            set(handles.YMax,'String',num2str(ymax));
        else
            YMin_Callback;
            YMax_Callback;
        end
        % Set the Auto Parameter Enable on
        set(handles.YAuto,'Enable','off');
    end
end


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

ymin = str2double(get(handles.YMin,'String'));
y = get(handles.Plot,'YLim');
ymax = y(2);
set(handles.Plot,'YLim',[ymin ymax]);
set(handles.YAuto,'Value',0);
% Set the Auto Parameter Enable on
set(handles.YAuto,'Enable','on');



% --- Executes during object creation, after setting all properties.
function YMin_CreateFcn(hObject, eventdata, handles)
% hObject    handle to YMin (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 YMax_Callback(hObject, eventdata, handles)
% hObject    handle to YMax (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 YMax as text
%        str2double(get(hObject,'String')) returns contents of YMax as a double

ymax = str2double(get(handles.YMax,'String'));
y = get(handles.Plot,'YLim');
ymin = y(1);
set(handles.Plot,'YLim',[ymin ymax]);
set(handles.YAuto,'Value',0);
% Set the Auto Parameter Enable on
set(handles.YAuto,'Enable','on');


% --- Executes during object creation, after setting all properties.
function YMax_CreateFcn(hObject, eventdata, handles)
% hObject    handle to YMax (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 EVMCaculation.
function EVMCaculation_Callback(hObject, eventdata, handles)
% hObject    handle to EVMCaculation (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)



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


% --- Executes during object creation, after setting all properties.
function InputData_CreateFcn(hObject, eventdata, handles)
% hObject    handle to InputData (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 during object creation, after setting all properties.
function WindowSelection_CreateFcn(hObject, eventdata, handles)
% hObject    handle to WindowSelection (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end




% --- Executes on selection change in VariableList.
function VariableList_Callback(hObject, eventdata, handles)
% hObject    handle to VariableList (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 VariableList contents as cell array
%        contents{get(hObject,'Value')} returns selected item from VariableList


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

% Hint: listbox 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 Plot.
function Plot_Callback(hObject, eventdata, handles)
% hObject    handle to Plot (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

val = get(handles.VariableList,'Value');


?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合九色欧美综合狠狠 | 国产午夜精品一区二区三区嫩草| 成人禁用看黄a在线| 亚洲123区在线观看| 国产精品免费久久久久| 欧美大肚乱孕交hd孕妇| 在线日韩av片| 99久久亚洲一区二区三区青草 | 国产乱码精品一品二品| 午夜精品福利一区二区三区av| 中文字幕欧美国产| 精品国产一区二区精华| 欧美一区二区三区啪啪| 欧美最新大片在线看| 不卡一区在线观看| 国产美女久久久久| 狠狠久久亚洲欧美| 免费成人性网站| 午夜欧美大尺度福利影院在线看 | 国产精品乱码一区二区三区软件 | 95精品视频在线| 国产成人精品www牛牛影视| 日韩av成人高清| 偷拍亚洲欧洲综合| 亚洲午夜私人影院| 亚洲一二三区视频在线观看| 亚洲欧美福利一区二区| 1024亚洲合集| 亚洲女爱视频在线| 亚洲欧美日韩在线播放| 综合久久国产九一剧情麻豆| 欧美激情中文字幕| 国产精品久久一卡二卡| 中文字幕亚洲视频| 亚洲天堂成人在线观看| 日韩理论电影院| 亚洲天堂久久久久久久| 亚洲精品亚洲人成人网| 亚洲精品国产第一综合99久久 | 日日摸夜夜添夜夜添精品视频| 亚洲精品乱码久久久久久黑人| 亚洲欧洲综合另类| 亚洲在线成人精品| 亚洲成人激情社区| 免费观看日韩av| 久久99久久99| 国产精品99久久久久久久女警| 国产剧情在线观看一区二区| 国产成人av电影在线播放| 国产麻豆日韩欧美久久| 国产aⅴ综合色| 91在线看国产| 欧美影院一区二区| 欧美日韩国产成人在线免费| 欧美精品tushy高清| 欧美成人伊人久久综合网| 久久欧美一区二区| 国产精品乱码一区二区三区软件| 中文字幕亚洲一区二区va在线| 一区二区三区精品| 蜜臀av一区二区在线观看| 国产在线观看免费一区| 丁香一区二区三区| 欧美私模裸体表演在线观看| 欧美一区二区三区在线观看| 久久视频一区二区| 日韩一区欧美小说| 日韩专区欧美专区| 国v精品久久久网| 日本高清不卡在线观看| 欧美大片一区二区三区| 国产女主播视频一区二区| 亚洲男同1069视频| 久久99精品一区二区三区| 99久久夜色精品国产网站| 4hu四虎永久在线影院成人| 国产欧美一区二区三区在线老狼| 一二三四区精品视频| 久久99国产精品尤物| caoporn国产精品| 91精品国产综合久久久久久久 | 久久综合色综合88| 亚洲女厕所小便bbb| 久久国产人妖系列| 91小视频免费看| 精品国产91乱码一区二区三区| 亚洲欧美自拍偷拍色图| 久久电影网站中文字幕| 色综合色综合色综合色综合色综合 | 99精品国产视频| 日韩欧美国产不卡| 亚洲欧美视频在线观看| 国产麻豆视频精品| 欧美精品亚洲一区二区在线播放| 欧美激情一二三区| 免费av网站大全久久| 91亚洲大成网污www| 久久九九国产精品| 日本成人在线电影网| 一本色道久久综合亚洲91| 久久久高清一区二区三区| 三级亚洲高清视频| 在线中文字幕不卡| 国产精品私人自拍| 精品一区二区三区免费播放| 欧美系列日韩一区| 中文字幕亚洲区| 成人污视频在线观看| 日韩美女在线视频| 日韩精品午夜视频| 欧美亚洲图片小说| 中文字幕亚洲精品在线观看 | 99精品国产99久久久久久白柏| 日韩欧美国产一区在线观看| 亚洲一区二区在线观看视频| 91片在线免费观看| 亚洲国产精品黑人久久久| 狂野欧美性猛交blacked| 欧美日韩午夜影院| 亚洲一区二区高清| 在线观看亚洲专区| 一二三四社区欧美黄| 91国内精品野花午夜精品 | 亚洲乱码精品一二三四区日韩在线 | 久久精品免费观看| 欧美美女一区二区在线观看| 亚洲一区精品在线| 日本久久电影网| 亚洲欧美乱综合| 日本精品一级二级| 亚洲精选视频在线| 欧美四级电影在线观看| 亚洲国产日韩一区二区| 欧美熟乱第一页| 亚洲第一主播视频| 91麻豆精品91久久久久久清纯| 同产精品九九九| 日韩三级电影网址| 国内精品伊人久久久久av一坑| 欧美成人aa大片| 狠狠狠色丁香婷婷综合久久五月| 欧美精品一区二区三区高清aⅴ | 蜜臀av一级做a爰片久久| 51久久夜色精品国产麻豆| 日本欧美一区二区三区| 欧美成人a视频| 国产suv精品一区二区6| 国产精品第四页| 91久久奴性调教| 午夜精品一区在线观看| 欧美一级片在线| 韩国欧美一区二区| 国产精品人人做人人爽人人添| 99久久免费视频.com| 一区二区不卡在线播放| 777奇米四色成人影色区| 精品无人码麻豆乱码1区2区| 日本一区二区免费在线观看视频 | 国产精品一品二品| 国产精品久久久久7777按摩| 91蜜桃免费观看视频| 亚洲成a人v欧美综合天堂下载| 日韩丝袜美女视频| 国产成人午夜精品5599| 一区二区成人在线视频 | 亚洲电影视频在线| 精品国产精品一区二区夜夜嗨| 不卡的av电影| 午夜精品久久久久久久99樱桃| 久久中文娱乐网| 在线观看一区不卡| 精品亚洲欧美一区| 亚洲精品欧美二区三区中文字幕| 欧美一区二区视频在线观看2022| 国产精品一二三区| 午夜精品久久久久久久久久| 久久精品无码一区二区三区| 欧美综合一区二区三区| 免费成人在线观看| 亚洲欧美日韩在线| 亚洲精品一区二区三区香蕉 | 久久亚洲春色中文字幕久久久| av中文字幕在线不卡| 免费高清不卡av| 亚洲另类春色校园小说| 26uuu色噜噜精品一区| 欧美午夜视频网站| 国产成人丝袜美腿| 日韩黄色免费网站| 亚洲精品自拍动漫在线| 亚洲精品在线免费播放| 欧美视频一区二区在线观看| 国产精品一区二区久久不卡| 五月激情综合婷婷| 亚洲人成在线观看一区二区| 久久先锋影音av鲁色资源| 欧美精选午夜久久久乱码6080| 岛国精品一区二区| 九九九精品视频| 亚洲va欧美va人人爽午夜|