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

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

?? gui_adv.m

?? 運用固定點算法實現快速的獨立成分分析
?? 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一区二区三区免费野_久草精品视频
国产精品系列在线观看| 午夜一区二区三区在线观看| 日韩三区在线观看| 4438成人网| 欧美一区二区大片| 2023国产一二三区日本精品2022| 国产精品激情偷乱一区二区∴| 国产精品乱人伦中文| 国产成人免费在线| 中文字幕一区二区5566日韩| 色综合久久天天综合网| 亚洲国产欧美日韩另类综合| 日韩一级片网址| 国产九九视频一区二区三区| 亚洲欧美日韩在线| 8x8x8国产精品| 国产91精品一区二区麻豆网站| 亚洲区小说区图片区qvod| 欧美日韩久久久| 国产精品一区不卡| 一区二区三区精品| 欧美大尺度电影在线| 成人av在线资源| 日韩不卡一区二区三区| 欧美经典一区二区| 在线成人免费视频| 成人a免费在线看| 久久综合九色综合97婷婷女人| 捆绑调教一区二区三区| 国产精品久久精品日日| 欧美日韩激情在线| 高清国产午夜精品久久久久久| 樱花影视一区二区| 久久久久国产成人精品亚洲午夜| 色综合欧美在线视频区| 麻豆91在线观看| 日韩毛片视频在线看| 日韩欧美卡一卡二| 欧美在线观看18| 国模套图日韩精品一区二区 | 色丁香久综合在线久综合在线观看| 亚洲va韩国va欧美va精品 | 成人亚洲一区二区一| 偷窥少妇高潮呻吟av久久免费| 久久久久久亚洲综合| 欧美肥妇毛茸茸| 99在线精品一区二区三区| 日韩黄色一级片| 亚洲男人天堂一区| 国产日韩在线不卡| 精品福利在线导航| 欧美理论电影在线| 91久久精品国产91性色tv| 国产91精品在线观看| 国产在线精品不卡| 青青草国产精品亚洲专区无| 亚洲黄色尤物视频| 中文字幕 久热精品 视频在线| 欧美va亚洲va国产综合| 在线不卡免费av| 欧美在线|欧美| 在线观看视频一区二区 | 91高清视频在线| 成人一级黄色片| 国模冰冰炮一区二区| 人人爽香蕉精品| 午夜精品aaa| 亚洲va韩国va欧美va精品| 亚洲免费观看高清在线观看| 中文字幕一区二区三区精华液| 久久久99精品免费观看不卡| 亚洲精品一区二区在线观看| 日韩视频免费观看高清完整版在线观看 | 成a人片国产精品| 国产一区高清在线| 国产主播一区二区三区| 久久www免费人成看片高清| 久久狠狠亚洲综合| 麻豆成人综合网| 国产一区二区日韩精品| 国产福利一区二区三区视频| 国产高清亚洲一区| 成人黄色a**站在线观看| 成人午夜视频在线| 白白色亚洲国产精品| 99在线精品免费| 欧美视频一区二区| 欧美一级片免费看| 欧美成人福利视频| 国产欧美一区二区精品性色| 中文字幕二三区不卡| 亚洲日穴在线视频| 亚洲高清免费观看| 免费观看成人av| 国产一区高清在线| 99vv1com这只有精品| 欧美在线观看18| 日韩三级视频在线观看| 久久久www免费人成精品| 中文字幕在线免费不卡| 亚洲国产精品嫩草影院| 欧美aⅴ一区二区三区视频| 精品一区二区三区影院在线午夜 | 777久久久精品| 欧美精品一区二区三区一线天视频 | 亚洲国产一区二区在线播放| 偷拍与自拍一区| 国产真实乱子伦精品视频| 成人天堂资源www在线| 欧美视频在线一区| 久久久久国产精品人| 亚洲精品日产精品乱码不卡| 日本成人在线电影网| 国产精品白丝jk白祙喷水网站| 色婷婷综合久久久久中文| 日韩视频免费直播| 日韩理论片网站| 免费成人在线播放| 一本色道综合亚洲| 欧美精品一区二区三区很污很色的| 一区免费观看视频| 美腿丝袜一区二区三区| 日韩欧美一级二级| 国产精品高潮久久久久无| 日韩有码一区二区三区| 国产1区2区3区精品美女| 欧美日韩激情在线| 成人免费在线视频| 久久精品久久99精品久久| 色综合天天综合给合国产| 欧美电影精品一区二区| 亚洲一区二区三区视频在线| 国产高清无密码一区二区三区| 欧美日本一区二区三区四区| 国产精品三级av| 国精产品一区一区三区mba桃花| 91电影在线观看| 中文字幕二三区不卡| 黄色精品一二区| 欧美精品视频www在线观看| 中文字幕日韩一区| 国产乱人伦偷精品视频免下载| 欧美午夜片在线观看| 国产精品激情偷乱一区二区∴| 狠狠网亚洲精品| 欧美夫妻性生活| 亚洲精品国产视频| 99精品偷自拍| 日本一区二区成人| 国产成人福利片| 久久综合国产精品| 久久99蜜桃精品| 日韩欧美色综合网站| 日本亚洲天堂网| 欧美精品三级在线观看| 亚洲成人久久影院| 91成人免费在线| 亚洲欧美怡红院| 99re热这里只有精品视频| 国产精品人妖ts系列视频| 国产成人亚洲综合a∨猫咪| 久久久亚洲精品一区二区三区| 理论电影国产精品| 日韩一区二区三区四区| 日本aⅴ亚洲精品中文乱码| 欧美久久久久久蜜桃| 粉嫩在线一区二区三区视频| 国产亚洲欧美一级| 韩国欧美国产一区| 26uuu精品一区二区| 国产综合一区二区| 国产日产欧美一区| 成人激情综合网站| 亚洲丝袜精品丝袜在线| 91美女片黄在线| 亚洲精品乱码久久久久久久久 | 91色视频在线| 一区二区欧美在线观看| 欧美精品久久天天躁| 日韩av电影一区| 久久综合色播五月| 国产成人av资源| 最近中文字幕一区二区三区| 一本色道亚洲精品aⅴ| 亚洲福利视频导航| 日韩欧美国产成人一区二区| 国产一区二区三区精品视频| 国产欧美精品一区aⅴ影院 | 欧美日韩国产大片| 日本美女视频一区二区| 久久一区二区三区四区| 成人免费观看男女羞羞视频| 亚洲精品乱码久久久久久黑人| 欧美丝袜丝交足nylons| 国产一区二区三区免费播放| 国产精品久久看| 欧美日韩夫妻久久| 国产成人亚洲综合a∨猫咪| 成人欧美一区二区三区1314| 这里只有精品免费|