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

📄 parsc.m

📁 这个为模式识别工具箱
💻 M
字号:
%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.5 2003/08/18 16:01:34 dick 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -