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

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

?? exportresults.m

?? matlab 非平穩(wěn)信號分析
?? M
?? 第 1 頁 / 共 5 頁
字號:
function varargout = exportresults(varargin)
% EXPORTRESULTS M-file for exportresults.fig
%      
% See also: GUIDE, GUIDATA, GUIHANDLES

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

% Last Modified by GUIDE v2.5 06-Feb-2006 12:19:41

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @exportresults_OpeningFcn, ...
                   'gui_OutputFcn',  @exportresults_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 exportresults is made visible.
function exportresults_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 exportresults (see VARARGIN)

% Choose default command line output for exportresults
handles.output = hObject;
set(hObject,'Color','white');
% Set the toolbar for the figure
pronytoolbar(hObject,'on');
% Update handles structure
guidata(hObject, handles);

% UIWAIT makes exportresults wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = exportresults_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 push_exportwspace.
function push_exportwspace_Callback(hObject, eventdata, handles)
% hObject    handle to push_exportwspace (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


if(evalin('base','exist(''PronyData'',''var'')')==0)
        msgbox('Please Prepare Prony Analysis Data to Export the Results','Prepare Prony Analysis GUI Data is Empty','replace')
        whitebg('white');
else    
    IGuiData=evalin('base','PronyData');
    if (get(handles.chkbx_all1,'Value') == get(handles.chkbx_all1,'Max'))
            assignin('base',get(handles.edit_all1,'String'),IGuiData)
    end

    if (get(handles.chkbx_raw,'Value') == get(handles.chkbx_raw,'Max'))
            name=get(handles.edit_raw,'String');
            name= struct('x',[],'y',[]);
            name.x=IGuiData.x_val;
            name.y=IGuiData.y_val;
            assignin('base',get(handles.edit_raw,'String'),name);
    end

    if (get(handles.chkbx_range,'Value') == get(handles.chkbx_range,'Max'))
    % then checkbox is checked-take approriate action
            name=get(handles.edit_range,'String');
            name= struct('x',[],'y',[]);
            name.x=IGuiData.window_x;
            name.y=IGuiData.window_y;
            assignin('base',get(handles.edit_range,'String'),name);
    end


    if (get(handles.chkbx_decimated,'Value') == get(handles.chkbx_decimated,'Max'))
    % then checkbox is checked-take approriate action
            name=get(handles.edit_decimated,'String');
            name= struct('x',[],'y',[]);
            name.x=IGuiData.deci_x;
            name.y=IGuiData.deci_y;
            assignin('base',get(handles.edit_decimated,'String'),name);
    end

    if (get(handles.chkbx_preprocess,'Value') == get(handles.chkbx_preprocess,'Max'))
    % then checkbox is checked-take approriate action
            name=get(handles.edit_preprocess,'String');
            name= struct('x',[],'y',[]);
            name.x=IGuiData.dp_x;
            name.y=IGuiData.dp_y;
            assignin('base',get(handles.edit_preprocess,'String'),name);
    end
    
end  % outermost condition which checks if the data exists or not

    % Export the data related to Perform Prony Analysis GUI
 %----------------------------------------------------------------------
 %----------------------------------------------------------------------
if(evalin('base','exist(''IIGuiData'',''var'')')==0)
        msgbox('Please Perform Prony Analysis to Export the Results','Perform Prony Analysis GUI Data is Empty','replace')
        whitebg('white');
else
    IIGuiData=evalin('base','IIGuiData');
    if (get(handles.chkbx_all2,'Value') == get(handles.chkbx_all2,'Max'))
         assignin('base',get(handles.edit_preprocess,'String'),IIGuiData);
    end
    
    if (get(handles.chkbx_pronyfit,'Value') == get(handles.chkbx_pronyfit,'Max'))
            name=get(handles.edit_pronyfit,'String');
            name= struct('x',[],'y',[],'prony_y',[],'f',[],'fft_y',[],'fft_prony_y',[]);
            name.x=IIGuiData.test_time;
            name.y=IIGuiData.test_data;
            name.prony_y=IIGuiData.iapp;
            name.f=IIGuiData.f1;
            name.fft_y=IIGuiData.fft_data1;
            name.fft_prony_y=IIGuiData.fft_iapp1;
            assignin('base',get(handles.edit_pronyfit,'String'),name);
    end
    
    % Export the results associated with the second plot of Prony Analysis GUI
   
    if (get(handles.chkbx_pronymodes,'Value') == get(handles.chkbx_pronymodes,'Max'))
            name=get(handles.edit_pronymodes,'String');
            name=struct('x',[],'y',[],'prony_y',[],'f',[],'fft_y',[],'fft_prony_y',[]);
            name.x=IIGuiData.test_time;
            name.y=IIGuiData.test_data;
            name.prony_y=IIGuiData.ai;
            name.f=IIGuiData.f2;
            name.fft_y=IIGuiData.fft_data2;
            name.fft_prony_y=IIGuiData.fft_iapp2;
            assignin('base',get(handles.edit_pronymodes,'String'),name);
    end
        

    % Export the results associated with the Pole Diagram of Prony Analysis GUI
    if (get(handles.chkbx_poles,'Value') == get(handles.chkbx_poles,'Max'))
            name=get(handles.edit_poles,'String');
            name=struct('zeros',[],'poles',[]);
            name.poles=IIGuiData.idennz;
            name.zeros=0;
            assignin('base',get(handles.edit_poles,'String'),name);
    end

% Export the results associated with the Pole-Zero Diagram of Prony Analysis GUI
    if (get(handles.chkbx_polezero,'Value') == get(handles.chkbx_polezero,'Max'))
            name=get(handles.edit_polezero,'String');
            name=struct('zeros',[],'poles',[]);
            name.poles=IIGuiData.idennz;
            name.zeros=IIGuiData.inummz;
            assignin('base',get(handles.edit_polezero,'String'),name);
    end


% Export the results associated with the Sorted Residues of Prony Analysis GUI
    if (get(handles.chkbx_sortedres,'Value') == get(handles.chkbx_sortedres,'Max'))
            name=get(handles.edit_sortedres,'String');
            name=struct('index',[],'residues',[]);
            name.index=1:size(IIGuiData.SUB_IND,2);
            name.residues=IIGuiData.aa_list;
            assignin('base',get(handles.edit_sortedres,'String'),name);
    end


% Export the results associated with the All Residues of Prony Analysis GUI
    if (get(handles.chkbx_allres,'Value') == get(handles.chkbx_allres,'Max'))
            name=get(handles.edit_allres,'String');
            name=struct('index',[],'residues',[]);
            name.index=1:size(IIGuiData.res_SUBIND,2);
            name.residues=IIGuiData.all_res;
            assignin('base',get(handles.edit_allres,'String'),name);
    end


% Export the results associated with the Pole Diagram of Prony Analysis GUI
    if (get(handles.chkbx_seerror,'Value') == get(handles.chkbx_seerror,'Max'))
            name=get(handles.edit_seerror,'String');
            name=struct('time',[],'squarederror',[]);
            name.time=IIGuiData.test_time;
            name.squarederror=IIGuiData.seerror;
            assignin('base',get(handles.edit_seerror,'String'),name);
    end


% Export the results associated with the All Energy of Prony Analysis GUI
    if (get(handles.chkbx_energy,'Value') == get(handles.chkbx_energy,'Max'))
            name=get(handles.edit_energy,'String');
            name=struct('index',[],'energy',[]);
            name.index=1:size(IIGuiData.res_SUBIND,2);
            name.energy=IIGuiData.energy;
            assignin('base',get(handles.edit_energy,'String'),name);
    end
    
end  % Outermost condition which checks if the data is empty

% Export Compare Sessions GUI Data
%----------------------------------------------------------------------
%----------------------------------------------------------------------
if(evalin('base','exist(''IIIGuiData'',''var'')')==0)
        msgbox('Please Compare Sessions to Export the Results','Compare Sessions GUI Data is Empty','replace')
        whitebg('white');
else
    IIIGuiData=evalin('base','IIIGuiData');
    SaveData=evalin('base','SaveData');
    size_limit=size(IIIGuiData,2);
% Export the results associated with the All data of Compare Sessions GUI
    if (get(handles.chkbx_all3,'Value') == get(handles.chkbx_all3,'Max'))
        assignin('base',get(handles.edit_all3,'String'),SaveData)
    end

% Export the Poles data
    if (get(handles.chkbx_comparepoles,'Value') == get(handles.chkbx_comparepoles,'Max'))
         assignin('base',get(handles.edit_comparepoles,'String'),{IIIGuiData(1:size_limit).poles})
    end

% Export the Residues data
    if (get(handles.chkbx_compareres,'Value') == get(handles.chkbx_compareres,'Max'))
         assignin('base',get(handles.edit_compareres,'String'),{IIIGuiData(1:size_limit).residues})
    end

% Export the Squared Error Data
    if (get(handles.chkbx_compareseerror,'Value') == get(handles.chkbx_compareseerror,'Max'))
         assignin('base',get(handles.edit_compareseerror,'String'),{IIIGuiData(1:size_limit).seerror})
    end

% Export the Energy data
    if (get(handles.chkbx_compareenergy,'Value') == get(handles.chkbx_compareenergy,'Max'))
        assignin('base',get(handles.edit_compareenergy,'String'),{IIIGuiData(1:size_limit).energy})
    end
end % Outermost condition to check if the data exists



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

Name(1)={get(handles.edit_all1,'String')};
Name(2)={get(handles.edit_raw,'String')};
Name(3)={get(handles.edit_decimated,'String')};
Name(4)={get(handles.edit_range,'String')};
Name(5)={get(handles.edit_preprocess,'String')};
Name(6)={get(handles.edit_all2,'String')};
Name(7)={get(handles.edit_pronyfit,'String')};
Name(8)={get(handles.edit_pronymodes,'String')};
Name(9)={get(handles.edit_poles,'String')};
Name(10)={get(handles.edit_polezero,'String')};
Name(11)={get(handles.edit_sortedres,'String')};
Name(12)={get(handles.edit_allres,'String')};
Name(13)={get(handles.edit_seerror,'String')};
Name(14)={get(handles.edit_energy,'String')};
Name(15)={get(handles.edit_all3,'String')};
Name(16)={get(handles.edit_comparepoles,'String')};
Name(17)={get(handles.edit_compareres,'String')};
Name(18)={get(handles.edit_compareseerror,'String')};
Name(19)={get(handles.edit_compareenergy,'String')};

if(evalin('base','exist(''PronyData'',''var'')')==0)
        msgbox('Please Prepare Prony Analysis Data to Export the Results','Prepare Prony Analysis GUI Data is Empty','replace')
        whitebg('white');
else    
    IGuiData=evalin('base','PronyData');
    if (get(handles.chkbx_all1,'Value') == get(handles.chkbx_all1,'Max'))
    % then checkbox is checked-take approriate action
         Data(1)={IGuiData};
    else
          Data(1)={'Empty'};
    end

    if (get(handles.chkbx_raw,'Value') == get(handles.chkbx_raw,'Max'))
    % then checkbox is checked-take approriate action
          Data(2)={[IGuiData.x_val IGuiData.y_val]};
    else
         Data(2)={'Empty'};
    end

    if (get(handles.chkbx_decimated,'Value') == get(handles.chkbx_decimated,'Max'))
    % then checkbox is checked-take approriate action
         Data(3)={[IGuiData.deci_x IGuiData.deci_y]};
    else
         Data(3)={'Empty'};
    end

    if (get(handles.chkbx_range,'Value') == get(handles.chkbx_range,'Max'))
    % then checkbox is checked-take approriate action
         Data(4)={[IGuiData.window_x IGuiData.window_y]};
    else
         Data(4)={'Empty'};
    end

    if (get(handles.chkbx_preprocess,'Value') == get(handles.chkbx_preprocess,'Max'))
    % then checkbox is checked-take approriate action
         Data(5)={[IGuiData.dp_x IGuiData.dp_y]};
    else
        Data(5)={'Empty'};
    end
end % close the test of existance of IGuiData

% Data associated with Perform Prony Analysis GUI
%------------------------------------------------------
%------------------------------------------------------
if(evalin('base','exist(''IIGuiData'',''var'')')==0)
        msgbox('Please Perform Prony Analysis to Export the Results','Perform Prony Analysis GUI Data is Empty','replace')
        whitebg('white');
else
    IIGuiData=evalin('base','IIGuiData');
    if (get(handles.chkbx_all2,'Value') == get(handles.chkbx_all2,'Max'))
        Data(6)={IIGuiData};
    else
        Data(6)={'Empty'};
    end

    if (get(handles.chkbx_pronyfit,'Value') == get(handles.chkbx_pronyfit,'Max'))
        Data(7)= {[IIGuiData.test_time IIGuiData.test_data IIGuiData.iapp ]};
    else
        Data(7)={'Empty'};
    end

        

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产日产欧产精品推荐色| 国产成人在线观看| 日韩一区二区三区在线| 视频在线观看91| 欧美电影免费观看完整版| 精品制服美女丁香| 日本一区二区三区免费乱视频| 国产高清精品在线| 中文字幕不卡在线播放| 不卡的av在线播放| 香蕉久久夜色精品国产使用方法 | 中文在线免费一区三区高中清不卡| 美女一区二区视频| 最新中文字幕一区二区三区 | 国内外精品视频| 亚洲精品国产精品乱码不99| 风流少妇一区二区| 亚洲一区二区三区精品在线| 3atv在线一区二区三区| 国产91清纯白嫩初高中在线观看| 国产精品久久久久天堂| 日韩一级欧美一级| 色综合天天性综合| 国产精品自拍av| 青草av.久久免费一区| 一区二区三区.www| 国产人成一区二区三区影院| 91精品欧美久久久久久动漫 | 成人黄色av网站在线| 一区二区三区中文免费| 欧美一区二区啪啪| 99久久99久久综合| 久久精品国产**网站演员| 欧美精品aⅴ在线视频| 日本不卡免费在线视频| 亚洲精品综合在线| 久久久久久久av麻豆果冻| 欧美性猛交xxxx乱大交退制版| 老司机精品视频在线| 亚洲一区在线观看视频| 中文字幕巨乱亚洲| 久久蜜桃香蕉精品一区二区三区| 在线视频欧美区| 色噜噜狠狠一区二区三区果冻| 日本不卡一区二区| 亚洲国产精品麻豆| 亚洲精品乱码久久久久久黑人| 国产婷婷色一区二区三区四区 | 99这里只有久久精品视频| 日韩国产欧美在线播放| 中文字幕在线观看不卡视频| 久久精品亚洲一区二区三区浴池| 色老汉一区二区三区| 91麻豆国产福利精品| 成人国产精品视频| 成人免费视频一区| 国产东北露脸精品视频| 国产一区二区精品久久99| 国产黄色成人av| 丁香亚洲综合激情啪啪综合| 国产精品一色哟哟哟| 懂色av一区二区夜夜嗨| 国产精品一区二区不卡| 不卡电影一区二区三区| 成人免费av网站| 欧美中文字幕一区| 欧美日韩另类一区| 欧美色网站导航| 日韩免费电影一区| 国产人成一区二区三区影院| 久久免费看少妇高潮| 成人欧美一区二区三区小说 | 日本成人在线电影网| 国产不卡一区视频| 日韩美女视频一区二区在线观看| 精品久久国产老人久久综合| 久久人人爽人人爽| 久久久久久免费网| 欧美成人一级视频| 欧美国产日本视频| 午夜精品免费在线| 成人丝袜高跟foot| 欧美在线免费观看视频| 精品国产人成亚洲区| 精品国产精品网麻豆系列| 国产亚洲一区二区在线观看| 亚洲三级视频在线观看| 久久aⅴ国产欧美74aaa| 91麻豆精品秘密| 国产欧美日韩精品一区| 免费人成精品欧美精品| 欧美日韩国产综合一区二区| 国产精品久久毛片a| 国产成人精品免费| 久久男人中文字幕资源站| 综合分类小说区另类春色亚洲小说欧美| 日韩黄色免费电影| 欧美年轻男男videosbes| 亚洲黄色录像片| 91久久国产最好的精华液| 亚洲午夜影视影院在线观看| 91国产成人在线| 精品国产制服丝袜高跟| 91精品婷婷国产综合久久性色| 日本视频一区二区三区| 亚洲丝袜制服诱惑| 日韩欧美高清一区| 成人av在线看| 亚洲国产精品自拍| 日韩午夜电影av| 成人av网站在线观看免费| 欧美一区二区福利在线| 久久91精品国产91久久小草| 国产精品网站一区| 色婷婷久久久综合中文字幕| 亚洲图片欧美色图| 欧美成人精品福利| 不卡的av电影在线观看| 亚洲二区在线观看| wwww国产精品欧美| 色综合久久综合| 日韩成人精品视频| 久久久亚洲精品石原莉奈| 91麻豆免费看片| 国模冰冰炮一区二区| 亚洲同性gay激情无套| 日韩欧美国产精品| 国产毛片精品一区| 香港成人在线视频| 国产精品狼人久久影院观看方式| 欧美理论电影在线| 大白屁股一区二区视频| 午夜av区久久| 亚洲欧美日韩小说| 亚洲精品一区在线观看| 91精品一区二区三区在线观看| 91亚洲精品久久久蜜桃网站| 美女脱光内衣内裤视频久久网站| 亚洲欧洲性图库| 国产精品污污网站在线观看| 久久你懂得1024| 欧美午夜片在线观看| 欧美美女bb生活片| 在线播放国产精品二区一二区四区 | 国产乱国产乱300精品| 日本91福利区| 亚洲资源在线观看| 亚洲精品成人a在线观看| 国产精品毛片久久久久久| 欧美精品一级二级三级| 欧美久久久一区| 欧美一级高清片| 6080yy午夜一二三区久久| 欧美日韩中字一区| 国产日产精品一区| 欧美亚洲尤物久久| 成人激情小说乱人伦| 国产精品一区二区在线播放| 麻豆91小视频| 日韩精品国产欧美| 久久国产乱子精品免费女| 免费观看日韩电影| 国产麻豆日韩欧美久久| proumb性欧美在线观看| 99久久精品国产一区二区三区 | 欧美三级电影网站| 欧美电影免费观看高清完整版在线| 精品久久一区二区| 中文字幕不卡在线| 亚洲综合在线免费观看| 日本不卡1234视频| 94色蜜桃网一区二区三区| 欧美美女一区二区在线观看| 久久影院视频免费| 亚洲乱码精品一二三四区日韩在线| 亚洲mv大片欧洲mv大片精品| 国产一区亚洲一区| 色婷婷亚洲一区二区三区| 日韩精品中文字幕一区| 国产精品三级av在线播放| 日本人妖一区二区| 99久久国产综合精品女不卡| 这里是久久伊人| 亚洲午夜久久久久久久久久久| 国产一区二区三区不卡在线观看| 欧美性一级生活| 亚洲丝袜自拍清纯另类| 国产在线观看免费一区| 日韩一级免费观看| 性久久久久久久| 欧美最新大片在线看| 中文字幕中文字幕一区二区| 久久精品二区亚洲w码| 91精品一区二区三区在线观看| 中文字幕在线不卡| 99国产麻豆精品| 亚洲欧洲在线观看av| av在线一区二区三区| 亚洲男人天堂av| 欧美性极品少妇|