⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 da_init.&&&

📁 王小平《遗传算法——理论、应用与软件实现》随书光盘
💻 &&&
字号:
%
%	Initialisation of all variables
%
clear all

more off;
data_loaded=0;
df_name=0;
df_path=0;
df_len=0;
df_ent=0;
output_var=0;
pcs_calculated=0;
pc2d_plot=1;
pc3d_plot1=1;
pc3d_plot2=2;
pcr_performed=0;
impact=0;
py=0;
vy=0;
%
% On-line option variables
%
ol_mod_path='NONE';
ol_mod_name='';
ol_pca_path='NONE';
ol_pca_name='';
ol_trans_path='D:\';
ol_trans_name='transfer.dat';
ol_plot_store=100;
ol_plot_ymin=0;
ol_plot_ymax=1;
ol_read_wait=20;
ol_pred_active=0;
ol_pca_active=0;
ol_xaxis_pc=1;
ol_yaxis_pc=2;
ol_pc_buffer=15;

%
% Check for the PLS toolbox
%
if exist('pls')~=0
	pls_present=1;
else
	pls_present=0;
end

clg;
drawnow;
f=gcf;
w1=f;
set(f,...
	'Position',[10 15 620 430],...
	'Number','off',...
	'Menubar','none',...
	'Name','DATA ANALYSIS TOOLBOX - Version 3.0',...
	'Resize','off',...
	'Interruptible','yes');

set(0, 'DefaultAxesFontName','times');
set(0, 'DefaultTextFontName','times');
set(0, 'DefaultAxesFontSize',12);
set(0, 'DefaulttextFontSize',10);
da_front;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -