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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品中午字幕| 日本精品一级二级| 精品欧美久久久| 精品一二三四在线| 国产欧美综合在线| 99vv1com这只有精品| 尤物av一区二区| 337p亚洲精品色噜噜| 久草中文综合在线| 国产精品久久二区二区| 日本精品一级二级| 日本美女一区二区| 日本一区二区三区久久久久久久久不 | 高清不卡一区二区在线| 亚洲欧洲日韩av| 欧美日韩日日夜夜| 韩国成人在线视频| 亚洲免费毛片网站| 91精品福利在线一区二区三区| 国产乱码精品一区二区三区av | 韩国三级中文字幕hd久久精品| 久久综合久久99| av午夜一区麻豆| 日韩经典中文字幕一区| 国产欧美日韩激情| 欧美日韩第一区日日骚| 国产一区二区久久| 亚洲成av人片| 日本一区二区视频在线| 欧美精品久久99| 成人av片在线观看| 日韩av在线发布| 中文字幕日韩欧美一区二区三区| 欧美日韩精品一区二区三区蜜桃| 国产精品一区二区三区网站| 亚洲综合清纯丝袜自拍| 国产欧美日韩在线观看| 欧美精品久久久久久久多人混战 | 国产精品女同互慰在线看| 欧美日韩一区二区三区在线| 国产麻豆精品久久一二三| 亚洲国产精品综合小说图片区| 久久免费视频色| 欧美人与禽zozo性伦| 91亚洲国产成人精品一区二区三| 美女网站一区二区| 亚洲综合男人的天堂| 国产欧美一区二区三区在线老狼| 欧美精品tushy高清| 一本高清dvd不卡在线观看 | 99re视频这里只有精品| 激情综合网av| 午夜精品久久久久影视| 国产精品国模大尺度视频| 精品美女一区二区三区| 欧美精选一区二区| 色噜噜偷拍精品综合在线| 国产一区二区不卡在线| 日本中文字幕一区二区视频| 一区二区三区鲁丝不卡| 国产精品白丝在线| 欧美激情一区二区三区蜜桃视频| 欧美精品一区二区三区视频| 欧美精品一二三四| 欧美日韩国产一级片| 欧美在线看片a免费观看| 成人av网站在线观看免费| 国产一区二区在线观看视频| 麻豆91在线看| 美国十次了思思久久精品导航| 天天做天天摸天天爽国产一区| 亚洲成人一二三| 亚洲一区二区三区美女| 亚洲激情图片qvod| 一区二区欧美在线观看| 一区二区三区在线观看视频 | 久久婷婷成人综合色| 欧美v国产在线一区二区三区| 日韩欧美国产成人一区二区| 日韩写真欧美这视频| 日韩欧美三级在线| 精品国产伦一区二区三区观看体验| 欧美一区二区三区视频在线观看| 欧美日韩高清不卡| 日韩一区二区三免费高清| 日韩一区二区三| 久久综合九色综合欧美98| 久久先锋影音av鲁色资源| 国产欧美日韩在线| 一区二区三区在线观看动漫| 亚洲第一在线综合网站| 日本美女一区二区三区视频| 九九久久精品视频| 国产成人综合在线播放| 成人动漫在线一区| 色8久久人人97超碰香蕉987| 欧美美女视频在线观看| 7777精品伊人久久久大香线蕉经典版下载 | 8v天堂国产在线一区二区| 日韩一二三四区| 中文字幕av一区二区三区高 | 宅男噜噜噜66一区二区66| 日韩欧美中文字幕精品| 久久久青草青青国产亚洲免观| 国产女同性恋一区二区| 亚洲一区视频在线观看视频| 日韩 欧美一区二区三区| 国产精品一区在线观看乱码| 99精品视频在线观看| 欧美性生活大片视频| 欧美成人一区二区三区在线观看| 国产日韩精品久久久| 一区二区三区电影在线播| 久久精品国产精品青草| 不卡一二三区首页| 4438x成人网最大色成网站| 久久久久久99精品| 亚洲丰满少妇videoshd| 国产真实乱对白精彩久久| 色悠悠亚洲一区二区| 日韩免费看的电影| 亚洲免费在线观看视频| 狠狠色狠狠色合久久伊人| 欧美艳星brazzers| 国产亚洲精品aa| 丝袜美腿亚洲综合| 不卡av在线网| 日韩一级欧美一级| 亚洲欧美日韩久久精品| 激情综合色播五月| 欧美日韩国产123区| 国产精品成人一区二区三区夜夜夜 | 日韩小视频在线观看专区| 国产精品久久精品日日| 久久国产综合精品| 欧美影视一区二区三区| 国产精品毛片久久久久久| 日本免费在线视频不卡一不卡二| 91亚洲男人天堂| 欧美国产视频在线| 精品一区中文字幕| 555夜色666亚洲国产免| 亚洲国产一区视频| 99精品视频在线播放观看| 2022国产精品视频| 麻豆中文一区二区| 欧美猛男gaygay网站| 亚洲激情自拍视频| www.亚洲免费av| 国产人妖乱国产精品人妖| 麻豆91免费观看| 欧美一区二区免费视频| 午夜在线电影亚洲一区| 91久久精品一区二区三区| 成人欧美一区二区三区黑人麻豆 | 最新国产の精品合集bt伙计| 国产精品一色哟哟哟| 亚洲精品一区二区三区99| 久久国产精品99精品国产| 日韩视频永久免费| 日本欧美一区二区| 欧美一区二区三区四区在线观看| 婷婷开心激情综合| 91.com在线观看| 麻豆免费精品视频| 欧美电视剧免费全集观看| 免费成人深夜小野草| 日韩欧美美女一区二区三区| 天天色综合天天| 日韩免费视频一区二区| 狠狠狠色丁香婷婷综合激情| 久久在线免费观看| 国产.欧美.日韩| 国产精品久久精品日日| 色婷婷综合中文久久一本| 尤物av一区二区| 欧美丰满嫩嫩电影| 极品美女销魂一区二区三区免费| 久久婷婷久久一区二区三区| 粉嫩绯色av一区二区在线观看| 国产精品毛片大码女人| 色婷婷综合久久久中文一区二区| 又紧又大又爽精品一区二区| 精品视频1区2区3区| 日韩av一区二| 久久亚洲春色中文字幕久久久| 国产成人aaa| 一区二区三区日韩欧美| 欧美电影一区二区三区| 精彩视频一区二区| 国产精品美女久久久久aⅴ| 色综合中文字幕国产 | 亚洲色图19p| 欧美色图在线观看| 蜜桃久久精品一区二区| 国产精品国产三级国产三级人妇| 色综合久久综合网| 日本中文在线一区| 国产精品第13页| 欧美精品在线观看一区二区|