代码搜索:CallBack

找到约 10,000 项符合「CallBack」的源代码

代码结果 10,000
www.eeworm.com/read/124842/14534232

m da_gp1.m

% % da_gp1.m % % GP initialisation script % da_front; drawnow; % % Initialise variables % pop_size=20; p_mutate=0.25; p_cross=0.65; p_perm=0.1; p_old=0.1; num_gen=50; tr_split=50;
www.eeworm.com/read/124842/14534280

m da_olset.m

% % da_olset % % Sets up the programme to run in on-line % mode. % % In order for the communications to function % the Serial Port communcations interface MUST % be running otherwise errors wi
www.eeworm.com/read/124842/14534345

m gafil.m

% % gafil.m % % Uses a GA to pick a set of filters for a set of data % % % Default values % out_col=1; df_name1=[]; df_path1=[]; mut_rat=0.2; cro_rat=0.6; scale_data=1; save_data=0; save_data_name=''
www.eeworm.com/read/124842/14534365

m% gafil.m%

% % gafil.m % % Uses a GA to pick a set of filters for a set of data % % % Default values % out_col=1; df_name1=[]; df_path1=[]; mut_rat=0.2; cro_rat=0.6; scale_data=1; save_data=0; save_data_name=''
www.eeworm.com/read/124842/14534466

m gobck.m

% % when finished initial viewing of data return to % the previous screen ..... close_btn=uicontrol(main,... 'Style','Push',... 'units','Pixels',... 'Position',[420 12
www.eeworm.com/read/224863/14565801

m menu_tickchange.m

Hm_top=uimenu('Label', 'Example' ); Hm_box=uimenu(Hm_top, 'Label' , 'Axis Box' ,... 'CallBack' ,[... 'if strcmp(get(gca, ''Box'' ), ''on'' ),'... 'set(gca, ''Box'' , ''off'' ),'...
www.eeworm.com/read/224863/14565803

m uimenu_test3.m

%对勾菜单项制作 figure h_menu=uimenu('label','Option'); h_sub1=uimenu(h_menu,'label','Grid on',... 'callback',[... %'[]'用于连接字符串. 'grid on,',... 'set(h_sub1,''checked'',''on''),',...%在已经选择的菜单项上,打上对勾
www.eeworm.com/read/224863/14565804

m uimenu_test2.m

%快捷键的制作 figure h_menu=uimenu(gcf,'Label','Color'); h_submenu1=uimenu(h_menu,'Label','Blue',... 'Callback','set(gcf,''color'',''blue'')'); h_submenu2=uimenu(h_menu,'label','Red',... 'Callback'
www.eeworm.com/read/224863/14565805

m menu_tick.m

Hm_top=uimenu( 'Label' , 'Example'); Hm_box=uimenu(Hm_top, 'Label' , 'Axis Box' , 'CallBack' ,[... 'if strcmp(get(gca, ''Box'' ), ''on'' ),'... 'set(gca,''Box'',''off'' ),'... 'set(Hm_
www.eeworm.com/read/224862/14565810

m control_radio.m

Hc_boxon = uicontrol(gcf,'Style' ,'radio',... 'Position',[20 45 100 20],... 'String' ,'Set box on',... 'Value',0,... '