da_pcapb.m
来自「王小平《遗传算法——理论、应用与软件实现》随书光盘」· M 代码 · 共 40 行
M
40 行
%
% da_pcapb.m
%
% prints the plot buttons on the bottom of the screen
% in the pca unit
%
drawnow;
but1=uicontrol(w1,...
'Style','push',...
'Position',[20 10 80 20],...
'String','2D PC v t',...
'CallBack','da_pc2d');
but2=uicontrol(w1,...
'Style','push',...
'Position',[115 10 80 20],...
'String','3d PCs v t',...
'CallBack','da_pc3d');
but3=uicontrol(w1,...
'Style','push',...
'Position',[210 10 80 20],...
'String','Variances',...
'CallBack','da_pcavr;');
but4=uicontrol(w1,...
'Style','push',...
'Position',[305 10 80 20],...
'String','SPE plot',...
'CallBack','da_pcspe;');
but5=uicontrol(w1,...
'Style','push',...
'Position',[400 10 80 20],...
'String','Loadings',...
'CallBack','da_pclds');
drawnow;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?