parsc.m

来自「这是我找到的一个模式识别工具箱」· M 代码 · 共 44 行

M
44
字号
%PARSC Parse classifier% % 	PARSC(W)% % Displays the type and, for combining classifiers, the structure of the% mapping W.% % See also MAPPINGS% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Physics, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlands% $Id: parsc.m,v 1.2 2006/03/08 22:06:58 duin Exp $function parsc(w,space)	prtrace(mfilename);	% If W is not a mapping, do not generate an error but simply return.	if (~isa(w,'mapping')) return; end	if (nargin == 1)		space = ''; 	end		% Display W's type.	display(w,space);	% If W is a combining classifier, recursively call PARSC to plot the	% combined classier.	pars = getdata(w);	if (iscell(pars))		space = [space '  '];		for i=1:length(pars)			parsc(pars{i},space)		end	endreturn

⌨️ 快捷键说明

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