📄 parsc.m
字号:
%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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -