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

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

?? gui_adv.m

?? fastica 的matlab 程序
?? M
字號:
function gui_adv(x, y)%% This file is needed by FASTICAG% This is the advanced options -dialog% @(#)$Id: gui_adv.m,v 1.4 2004/07/27 13:09:26 jarmo Exp $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Global variables% Handle to the windowglobal hf_FastICA_AdvOpt;% Handles to some of the controls in windowglobal hpm_FastICA_finetune;global he_FastICA_a1;global he_FastICA_a2;global he_FastICA_myy;global he_FastICA_epsilon;global he_FastICA_maxIterations;global he_FastICA_maxFinetune;global he_FastICA_sampleSizeglobal hpm_FastICA_initState;global hb_FastICA_initGuess;global ht_FastICA_initGuess;global hpm_FastICA_displayMode;global he_FastICA_displayInterval;global hpm_FastICA_verbose;% Some of the main variables neededglobal g_FastICA_initGuess;global g_FastICA_finetune;global g_FastICA_a1;global g_FastICA_a2;global g_FastICA_myy;global g_FastICA_epsilon;global g_FastICA_maxNumIte;global g_FastICA_maxFinetune;global g_FastICA_initState;global g_FastICA_sampleSize;global g_FastICA_displayMo;global g_FastICA_displayIn;global g_FastICA_verbose;global c_FastICA_appr_strD;global c_FastICA_appr_strV;global c_FastICA_finetune_strD;global c_FastICA_finetune_strV;global c_FastICA_iSta_strD;global c_FastICA_iSta_strV;global c_FastICA_dMod_strD;global c_FastICA_dMod_strV;global c_FastICA_verb_strD;global c_FastICA_verb_strV;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Configuration optionsFIGURENAME = 'FastICA: advanced options';FIGURETAG = 'f_FastICAAdvOpt';FIGURESIZE = [x y 450 280];%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Check to see if this figure is already open - it should not!% Can't have more than one copy - otherwise the global% variables and handles can get mixed up.if ~isempty(findobj('Tag',FIGURETAG))  error('Error: advanced options dialog already open!');end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Initialize some of the controls' values% Did we already load some initial guesspm_initState_Value = g_FastICA_initState;if isempty(g_FastICA_initGuess) | (g_FastICA_initGuess == 1)  t_initGuess_String = 'Not loaded';else  t_initGuess_String = 'Loaded';end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Create the figurea = figure('Color',[0.8 0.8 0.8], ...	   'PaperType','a4letter', ...	   'Name', FIGURENAME, ...	   'NumberTitle', 'off', ...	   'Tag', FIGURETAG, ...	   'Position', FIGURESIZE, ...	   'MenuBar', 'none');set (a, 'Resize', 'off');hf_FastICA_AdvOpt = a;set(hf_FastICA_AdvOpt, 'HandleVisibility', 'callback');%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% From here on it get's ugly as I have not had time to clean it up%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Create the framespos_l=2;pos_w=FIGURESIZE(3)-4;pos_h=FIGURESIZE(4)-4;pos_t=2;h_f_adv_background = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Position',[pos_l pos_t pos_w pos_h], ...  'Style','frame', ...  'Tag','f_adv_background');pos_w=120;pos_l=FIGURESIZE(3)-(pos_w+2+2);pos_h=FIGURESIZE(4)-2*4;pos_t=4;h_f_adv_side = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Position',[pos_l pos_t pos_w pos_h], ...  'Style','frame', ...  'Tag','f_adv_side');pos_l=4;pos_w=FIGURESIZE(3)-8-pos_w-2;pos_h=FIGURESIZE(4)-8;pos_t=4;h_f_advopt = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Position',[pos_l pos_t pos_w pos_h], ...  'Style','frame', ...  'Tag','f_advopt');%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Controls in f_advoptbgc = get(h_f_advopt, 'BackgroundColor');pos_w1=230;pos_w2=70;pos_frame=get(h_f_advopt, 'Position');pos_h = 20;pos_t = pos_frame(2) + pos_frame(4) - pos_h - 6;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Fine-tune (g)', ...  'Style','text', ...  'Tag','t_727');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;hpm_FastICA_finetune = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',c_FastICA_finetune_strD, ...  'Style','popupmenu', ...  'Tag','pm_finetune', ...  'Value',g_FastICA_finetune);pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Parameter a1 (g = ''tanh'')', ...  'Style','text', ...  'Tag','t_22');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_a1 = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Callback','gui_advc Checka1', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_a1), ...  'Style','edit', ...  'Tag','e_a1');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Parameter a2 (g = ''gauss'')', ...  'Style','text', ...  'Tag','t_222');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_a2 = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Callback','gui_advc Checka2', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_a2), ...  'Style','edit', ...  'Tag','e_a2');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','mu (step size)', ...  'Style','text', ...  'Tag','t_223');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_myy = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Callback','gui_advc CheckMyy', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_myy), ...  'Style','edit', ...  'Tag','e_myy');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','epsilon (stopping criterion)', ...  'Style','text', ...  'Tag','t_23');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_epsilon = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_epsilon), ...  'Style','edit', ...  'Tag','e_epsilon');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Maximum number of iterations', ...  'Style','text', ...  'Tag','t_24');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_maxIterations = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_maxNumIte), ...  'Style','edit', ...  'Tag','e_maxIterations');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Maximum iterations in fine-tuning', ...  'Style','text', ...  'Tag','t_2412');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_maxFinetune = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_maxFinetune), ...  'Style','edit', ...  'Tag','e_maxFinetune');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Sample size (proportion)', ...  'Style','text', ...  'Tag','t_224');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_sampleSize = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Callback','gui_advc CheckSampleSize', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_sampleSize), ...  'Style','edit', ...  'Tag','e_sampleSize');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Initial state', ...  'Style','text', ...  'Tag','t_25');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;hpm_FastICA_initState = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',c_FastICA_iSta_strD, ...  'Style','popupmenu', ...  'Tag','pm_initState', ...  'Value',pm_initState_Value);pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;hb_FastICA_initGuess = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc loadGuess', ...  'Position',[pos_l pos_t (pos_w1-60) pos_h], ...  'String','Load initial guess', ...  'UserData', g_FastICA_initGuess, ...  'Tag','b_LoadGuess');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;ht_FastICA_initGuess = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[(pos_l) pos_t (pos_w2) pos_h], ...  'String',t_initGuess_String, ...  'Style','text', ...  'Tag','t_initGuess');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Display mode', ...  'Style','text', ...  'Tag','t_27');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;hpm_FastICA_displayMode = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',c_FastICA_dMod_strD, ...  'Style','popupmenu', ...  'Tag','pm_displayMode', ...  'Value',g_FastICA_displayMo);pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Iterations between displays', ...  'Style','text', ...  'Tag','t_28');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;he_FastICA_displayInterval = uicontrol('Parent',a, ...  'BackgroundColor',[1 1 1], ...  'HorizontalAlignment','right', ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',num2str(g_FastICA_displayIn), ...  'Style','edit', ...  'Tag','e_displayInterval');pos_t = pos_t - pos_h;pos_l = pos_frame(1) + 6;b = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'HorizontalAlignment','left', ...  'Position',[pos_l pos_t pos_w1 pos_h], ...  'String','Verbose', ...  'Style','text', ...  'Tag','t_29');pos_l = pos_frame(1) + pos_frame(3) - 6 - pos_w2;hpm_FastICA_verbose = uicontrol('Parent',a, ...  'BackgroundColor',bgc, ...  'Position',[pos_l pos_t pos_w2 pos_h], ...  'String',c_FastICA_verb_strD, ...  'Style','popupmenu', ...  'Tag','pm_verbose', ...  'Value',g_FastICA_verbose);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Controls in f_adv_sidepos_vspace = 6;pos_hspace = 10;pos_frame = get(h_f_adv_side, 'Position');pos_w = 100;pos_h = 30;pos_l = pos_frame(1) + pos_hspace;pos_t = pos_frame(2) + pos_frame(4) - pos_h - pos_vspace;b = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc OK', ...  'Position',[pos_l pos_t pos_w pos_h], ...  'String','OK', ...  'Tag','b_advOK');pos_t=pos_t-pos_h-pos_vspace;b = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc Cancel', ...  'Position',[pos_l pos_t pos_w pos_h], ...  'String','Cancel', ...  'Tag','b_advCancel');pos_t=pos_t-pos_h-pos_vspace;b = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc Default', ...  'Position',[pos_l pos_t pos_w pos_h], ...  'String','Default', ...  'Tag','b_advDefault');pos_t=pos_t-pos_h-pos_vspace;b = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc Apply', ...  'Position',[pos_l pos_t pos_w pos_h], ...  'String','Apply', ...  'Tag','b_advApply');pos_t = pos_frame(2) + pos_vspace;b = uicontrol('Parent',a, ...  'BackgroundColor',[0.701961 0.701961 0.701961], ...  'Callback','gui_advc Help', ...  'Position',[pos_l pos_t pos_w pos_h], ...  'String','Help', ...  'Tag','b_advHelp');

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆蜜桃一区二区三区| 一区二区三区四区国产精品| 免费观看在线综合| 欧美精品一二三四| 国产亚洲成av人在线观看导航| 美女视频网站久久| 久久这里只有精品首页| 国产乱码精品一区二区三| 国产视频一区在线播放| 91在线看国产| 亚洲一区成人在线| 欧美一级片在线看| 国产成人啪免费观看软件| 国产精品不卡在线| 一本色道综合亚洲| 午夜伦理一区二区| 久久丝袜美腿综合| 一本色道久久综合精品竹菊| 天天色天天操综合| 久久精品欧美日韩| 91老师国产黑色丝袜在线| 日韩电影一区二区三区四区| 日韩欧美自拍偷拍| 91在线播放网址| 男人的天堂久久精品| 国产嫩草影院久久久久| 欧美午夜精品理论片a级按摩| 日韩成人精品在线| 国产精品三级久久久久三级| 911精品国产一区二区在线| 国产精品一区专区| 亚洲一区二区在线视频| 26uuu成人网一区二区三区| 欧洲视频一区二区| 韩国视频一区二区| 天天影视色香欲综合网老头| 欧美经典一区二区三区| 欧美日本一区二区| 成人黄色在线看| 免费高清成人在线| 综合激情网...| 久久精品欧美一区二区三区麻豆| 在线一区二区三区做爰视频网站| 蜜臀a∨国产成人精品| 国产精品的网站| 精品日韩欧美一区二区| 日本精品一级二级| 国产成人在线影院| 美脚の诱脚舐め脚责91| 亚洲精品成人a在线观看| wwww国产精品欧美| 日韩一区二区免费视频| 在线亚洲免费视频| 99re8在线精品视频免费播放| 麻豆国产91在线播放| 水野朝阳av一区二区三区| 国产精品电影一区二区| 国产午夜精品在线观看| 日韩三级高清在线| 8v天堂国产在线一区二区| 日本韩国欧美一区| 99久久国产综合色|国产精品| 毛片av中文字幕一区二区| 亚洲成人激情社区| 亚洲激情自拍视频| 亚洲欧美在线视频观看| 国产精品久久影院| 国产日韩欧美精品在线| 久久综合中文字幕| 欧美成va人片在线观看| 日韩一区二区视频在线观看| 欧美日韩夫妻久久| 欧美丝袜丝nylons| 欧美久久高跟鞋激| 欧美精品乱码久久久久久按摩| 欧美专区在线观看一区| 日本二三区不卡| 欧美色图片你懂的| 欧美日高清视频| 日韩欧美另类在线| 久久久蜜臀国产一区二区| 精品国产91乱码一区二区三区 | 欧美日韩中文一区| 91高清视频免费看| 欧美日韩三级一区| 日韩一区二区在线看| 久久亚洲精精品中文字幕早川悠里| 欧美一区二区网站| 久久综合久久久久88| 国产亚洲综合av| 国产精品免费视频网站| 国产精品久久久久四虎| 亚洲天堂2014| 天天综合日日夜夜精品| 精品一区二区三区免费毛片爱| 久草精品在线观看| 国产成人免费在线| 91丨porny丨国产| 欧美日韩视频在线一区二区| 91精品国产免费| 久久精品一区二区三区不卡牛牛| 国产免费久久精品| 亚洲综合一区二区三区| 日本不卡一区二区| 国产精品亚洲视频| 在线视频你懂得一区二区三区| 欧美日韩国产片| 2022国产精品视频| 亚洲视频一二三区| 久久国内精品视频| 成人成人成人在线视频| 欧美久久一区二区| 日本一区二区三区免费乱视频| 亚洲欧美在线视频| 日本aⅴ精品一区二区三区| 高清不卡一区二区| 欧美日韩激情一区二区三区| 久久久久国色av免费看影院| 最新国产成人在线观看| 日本一区中文字幕| 不卡电影免费在线播放一区| 精品视频全国免费看| 久久久一区二区三区捆绑**| 一个色在线综合| 紧缚捆绑精品一区二区| 欧美性极品少妇| 国产欧美日产一区| 日本va欧美va瓶| 在线一区二区三区四区| 国产无遮挡一区二区三区毛片日本| 亚洲精品视频观看| 国产成人夜色高潮福利影视| 欧美精品第一页| 亚洲欧美偷拍三级| 国产激情一区二区三区四区 | 日本道精品一区二区三区| 337p粉嫩大胆色噜噜噜噜亚洲 | 中文字幕人成不卡一区| 精品一区二区三区日韩| 欧美日韩在线一区二区| 中文字幕一区二区日韩精品绯色| 免费观看30秒视频久久| 欧美三级在线播放| 自拍偷拍亚洲激情| 国产精品1区2区| 日韩天堂在线观看| 亚洲.国产.中文慕字在线| 不卡的av在线播放| 日本一区二区视频在线| 久久国产精品区| 91精品国产综合久久蜜臀| 亚洲大片在线观看| 欧美影视一区在线| 一区二区三区四区不卡视频 | 国产精品一区二区久久不卡| 4hu四虎永久在线影院成人| 一区二区免费视频| 在线观看区一区二| 亚洲精品成人精品456| 91成人看片片| 亚洲国产精品一区二区www在线| 成人ar影院免费观看视频| 国产欧美一区二区精品性| 激情综合色综合久久| 精品国产一区二区亚洲人成毛片| 免费人成黄页网站在线一区二区| 欧美综合视频在线观看| 亚洲国产一区二区三区| 欧美色男人天堂| 日韩综合小视频| 正在播放亚洲一区| 日韩影院免费视频| 日韩一区二区三区高清免费看看| 美女视频黄 久久| 久久亚洲影视婷婷| 成人黄色a**站在线观看| 亚洲丝袜美腿综合| 欧美综合一区二区三区| 亚洲第一在线综合网站| 91精品国产综合久久精品| 麻豆专区一区二区三区四区五区| 日韩一区二区三区av| 国产精品自拍一区| 国产精品妹子av| 色狠狠一区二区| 日本欧美在线观看| 国产欧美日韩精品a在线观看| 99久久99久久久精品齐齐| 亚洲小说春色综合另类电影| 欧美猛男男办公室激情| 久久综合综合久久综合| 国产午夜三级一区二区三| 91蜜桃婷婷狠狠久久综合9色| 亚洲一二三区在线观看| 2017欧美狠狠色| 在线亚洲+欧美+日本专区| 久久66热偷产精品| 亚洲欧美国产三级| 91精品国产aⅴ一区二区| 成人精品一区二区三区中文字幕|