parsc.m

来自「模式识别 MATLAB 的工具箱,比较实用,包括SVM,ICA,PCA,NN等等」· M 代码 · 共 25 行

M
25
字号
%PARSC Pars 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 Netherlandsfunction parsc(W,space)if ~isa(W,'mapping') return; endif nargin == 1, space = ''; enddisplay(W,space);w = double(W);if iscell(w)	space = [space '  '];	for i=1:length(w)		parsc(w{i},space)	endend

⌨️ 快捷键说明

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