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

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

?? algrithem_database.m

?? MATLAB Compiler 是MATLAB自帶的一個編譯器
?? M
?? 第 1 頁 / 共 3 頁
字號:
function varargout = algrithem_database(varargin)
% ALGRITHEM_DATABASE M-file for algrithem_database.fig
%      ALGRITHEM_DATABASE, by itself, creates a new ALGRITHEM_DATABASE or raises the existing
%      singleton*.
%
%      H = ALGRITHEM_DATABASE returns the handle to a new ALGRITHEM_DATABASE or the handle to
%      the existing singleton*.
%
%      ALGRITHEM_DATABASE('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in ALGRITHEM_DATABASE.M with the given input arguments.
%
%      ALGRITHEM_DATABASE('Property','Value',...) creates a new ALGRITHEM_DATABASE or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before algrithem_database_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to algrithem_database_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 algrithem_database

% Last Modified by GUIDE v2.5 15-May-2006 00:06:21

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

% Choose default command line output for algrithem_database
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

initialize_gui(hObject, handles, false);      %初始化界面

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


% --- Outputs from this function are returned to the command line.
function varargout = algrithem_database_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;



function array_number_Callback(hObject, eventdata, handles)
% hObject    handle to array_number (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 array_number as text
%        str2double(get(hObject,'String')) returns contents of array_number as a double
array_number = str2double(get(hObject, 'String'));
% if isnan(array_number)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new array_number value
handles.metricdata.array_number = array_number;
guidata(hObject,handles)

% --- Executes during object creation, after setting all properties.
function array_number_CreateFcn(hObject, eventdata, handles)
% hObject    handle to array_number (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end




function work_frequency_Callback(hObject, eventdata, handles)
% hObject    handle to work_frequency (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 work_frequency as text
%        str2double(get(hObject,'String')) returns contents of work_frequency as a double
work_frequency = str2double(get(hObject, 'String'));
% if isnan(work_frequency)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.work_frequency = work_frequency;
guidata(hObject,handles)

% --- Executes during object creation, after setting all properties.
function work_frequency_CreateFcn(hObject, eventdata, handles)
% hObject    handle to work_frequency (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function array_distance_Callback(hObject, eventdata, handles)
% hObject    handle to array_distance (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 array_distance as text
%        str2double(get(hObject,'String')) returns contents of array_distance as a double
array_distance = str2double(get(hObject, 'String'));
% if isnan(array_distance)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.array_distance = array_distance;
guidata(hObject,handles)

% --- Executes during object creation, after setting all properties.
function array_distance_CreateFcn(hObject, eventdata, handles)
% hObject    handle to array_distance (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function work_wavelength_Callback(hObject, eventdata, handles)
% hObject    handle to work_wavelength (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 work_wavelength as text
%        str2double(get(hObject,'String')) returns contents of work_wavelength as a double
work_wavelength = str2double(get(hObject, 'String'));
% if isnan(work_wavelength)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.work_wavelength = work_wavelength;
guidata(hObject,handles)


% --- Executes during object creation, after setting all properties.
function work_wavelength_CreateFcn(hObject, eventdata, handles)
% hObject    handle to work_wavelength (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function SNR_Callback(hObject, eventdata, handles)
% hObject    handle to SNR (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 SNR as text
%        str2double(get(hObject,'String')) returns contents of SNR as a double
SNR = str2double(get(hObject, 'String'));
% if isnan(SNR)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.SNR = SNR;
guidata(hObject,handles)


% --- Executes during object creation, after setting all properties.
function SNR_CreateFcn(hObject, eventdata, handles)
% hObject    handle to SNR (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function JNR1_Callback(hObject, eventdata, handles)
% hObject    handle to JNR1 (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 JNR1 as text
%        str2double(get(hObject,'String')) returns contents of JNR1 as a double
JNR1 = str2double(get(hObject, 'String'));
% if isnan(JNR1)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.JNR1 = JNR1;
guidata(hObject,handles)


% --- Executes during object creation, after setting all properties.
function JNR1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to JNR1 (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function JNR3_Callback(hObject, eventdata, handles)
% hObject    handle to JNR3 (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 JNR3 as text
%        str2double(get(hObject,'String')) returns contents of JNR3 as a double
JNR3 = str2double(get(hObject, 'String'));
% if isnan(JNR3)
%     set(hObject, 'String', 0);
%     errordlg('Input must be a number','Error');
% end

% Save the new volume value
handles.metricdata.JNR3 = JNR3;
guidata(hObject,handles)


% --- Executes during object creation, after setting all properties.
function JNR3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to JNR3 (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
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜精品久久久久久久蜜桃app| 国产人成一区二区三区影院| 一区二区在线观看免费视频播放| 国产suv精品一区二区三区 | 欧美精三区欧美精三区| 亚洲影院久久精品| 日韩一级二级三级| 国产在线不卡一区| 最新国产精品久久精品| 欧美日韩三级在线| 久久精品国产一区二区三| 国产午夜精品一区二区| 91美女福利视频| 男男视频亚洲欧美| 日本一区二区三区免费乱视频| va亚洲va日韩不卡在线观看| 亚洲国产成人精品视频| 久久综合中文字幕| 色网综合在线观看| 日韩经典中文字幕一区| 久久精品网站免费观看| 欧美视频一区在线| 国产成人亚洲综合a∨婷婷图片| 亚洲精品高清视频在线观看| 日韩精品一区二区三区四区视频| 成人av小说网| 美女视频一区二区| 日韩一区在线播放| 欧美电视剧在线观看完整版| 99精品欧美一区二区三区小说 | 亚洲欧美日韩人成在线播放| 色综合久久久久综合| 久久国产精品72免费观看| 国产精品动漫网站| 欧美一区二区三区爱爱| 色综合视频在线观看| 精品一区二区三区免费毛片爱 | 欧美日本国产一区| 丁香五精品蜜臀久久久久99网站 | 日韩av电影免费观看高清完整版在线观看 | 色8久久人人97超碰香蕉987| 激情文学综合网| 性做久久久久久久久| 国产欧美视频在线观看| 欧美一区二区三区日韩视频| 91麻豆高清视频| 国产一区免费电影| 奇米色777欧美一区二区| 亚洲人成影院在线观看| 久久先锋影音av鲁色资源| 欧美精品黑人性xxxx| 日本韩国一区二区三区| 粉嫩aⅴ一区二区三区四区| 欧美aaaaa成人免费观看视频| 亚洲伦理在线精品| 国产欧美视频在线观看| 日韩免费高清电影| 日韩色在线观看| 欧美日韩一区二区在线观看视频| 99久久精品久久久久久清纯| 国产成人精品影院| 韩日欧美一区二区三区| 久久激情五月激情| 日本在线不卡一区| 日韩精品免费专区| 亚洲一区二区视频在线观看| 中文字幕一区二区三区不卡| 久久久国产精华| 久久久噜噜噜久久人人看| 日韩限制级电影在线观看| 欧美一区二区在线免费播放| 欧美日韩精品综合在线| 欧美色视频一区| 欧美三级电影网| 3atv在线一区二区三区| 91麻豆精品国产91久久久久久 | 日本vs亚洲vs韩国一区三区二区| 亚洲精品国产a| 亚洲女与黑人做爰| 亚洲国产日韩一级| 日韩影院在线观看| 免费成人你懂的| 国产一区视频在线看| 国产成人av电影在线| 成人免费视频播放| 色综合天天综合网天天看片| 一本久道中文字幕精品亚洲嫩| 91麻豆精品视频| 欧美日韩一卡二卡三卡 | 91啦中文在线观看| 欧美性高清videossexo| 在线不卡一区二区| 欧美www视频| 欧美激情一区二区三区不卡| |精品福利一区二区三区| 亚洲欧美经典视频| 午夜免费欧美电影| 激情综合色播激情啊| 成人永久免费视频| 色噜噜狠狠色综合欧洲selulu| 欧美性做爰猛烈叫床潮| 91精品国产免费| 国产女人18毛片水真多成人如厕 | 日韩欧美一区中文| 国产日韩欧美精品电影三级在线| 自拍偷在线精品自拍偷无码专区| 亚洲综合一区二区三区| 麻豆视频一区二区| 成人app网站| 欧美色欧美亚洲另类二区| 日韩精品一区国产麻豆| 中文字幕人成不卡一区| 五月天精品一区二区三区| 国产一区二区三区综合| 91婷婷韩国欧美一区二区| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲与欧洲av电影| 久久国产视频网| 色综合天天狠狠| 26uuu亚洲综合色欧美 | 中文字幕制服丝袜成人av| 亚洲成人资源网| 国产精品白丝jk黑袜喷水| 日本二三区不卡| 久久久久久免费| 亚洲高清免费在线| 成人av资源网站| 欧美不卡一区二区三区| 一区二区三区欧美日| 国产一区二区三区香蕉| 精品婷婷伊人一区三区三| 久久精品人人做人人爽人人| 无码av中文一区二区三区桃花岛| 国产福利一区二区三区视频在线| 欧美三级蜜桃2在线观看| 国产精品久久久久久一区二区三区| 日韩电影网1区2区| 91九色02白丝porn| 国产精品久久久久婷婷| 国产一区在线精品| 日韩午夜av一区| 亚洲电影视频在线| 99精品黄色片免费大全| 国产午夜亚洲精品羞羞网站| 男女激情视频一区| 欧美日本国产视频| 亚洲在线一区二区三区| 91蜜桃网址入口| 国产精品久久网站| 国产91综合网| 国产亚洲欧美激情| 国产精品主播直播| 欧美精品一区二区不卡| 蜜桃视频免费观看一区| 欧美另类变人与禽xxxxx| 亚洲一级在线观看| 欧美亚洲综合另类| 亚洲影院免费观看| 欧美亚洲国产一区二区三区va| 亚洲色图色小说| 97se亚洲国产综合自在线观| 国产精品免费免费| 丁香啪啪综合成人亚洲小说 | 亚洲桃色在线一区| 成人黄动漫网站免费app| 国产欧美精品一区二区三区四区| 国产一区二区精品在线观看| xfplay精品久久| 国产一区二区三区免费在线观看| 日韩精品中午字幕| 美女脱光内衣内裤视频久久影院| 欧美一级片在线看| 韩国三级在线一区| 国产无一区二区| 99久久久无码国产精品| 亚洲精品久久久蜜桃| 91麻豆精东视频| 亚欧色一区w666天堂| 欧美一区日韩一区| 国产尤物一区二区| 国产日韩欧美激情| 色视频欧美一区二区三区| 亚洲午夜免费电影| 日韩欧美国产一区二区三区| 韩国精品免费视频| 国产精品久久久久久亚洲伦| 色88888久久久久久影院野外 | 欧美一区二区三区啪啪| 国产一区二区在线观看免费| 国产精品欧美极品| 欧美在线看片a免费观看| 日日骚欧美日韩| 久久久久国产精品麻豆ai换脸| 国产不卡视频一区| 亚洲第一在线综合网站| 日韩三级视频中文字幕| 成人动漫在线一区| 亚洲v精品v日韩v欧美v专区| 久久综合丝袜日本网| 日本韩国一区二区三区视频|