replot.m

来自「细胞生长结构可视化工具箱-MATLAB Toolbox1999.zip」· M 代码 · 共 16 行

M
16
字号
% Redisplay data for currebt network
%
%	function GcsProj = replot(GcsProj);

function GcsProj = replot(GcsProj);

if strcmp(GcsProj.Gcs.Trained,'Yes')
%	figure(1);
	GcsProj = plotparw(GcsProj);
%	figure(2);
	GcsProj = post(GcsProj);
%	figure(4);
	GcsProj = roc_parw(GcsProj);
else
   uiwait(errordlg('Network Must be trained before visualisation plots are created!'));
end

⌨️ 快捷键说明

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