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

📄 subsref.m

📁 模式识别 MATLAB 的工具箱,比较实用,包括SVM,ICA,PCA,NN等等模式识别算法.
💻 M
字号:
function w = subsref(v,s)%error('Routine in error')if isempty(s.subs{1}) | isempty(s.subs{2})	w = [];	returnendif strcmp(v.t,'affine') 	v.d = v.d(s.subs{1},s.subs{2});	if ~isempty(v.l), v.l = v.l(s.subs{2},:); end	if ~strcmp(s.subs{2},':'), v.c = length(s.subs{2}); end	if ~strcmp(s.subs{1},':'), v.k = length(s.subs{1}); end	w = v;	returnendif ~strcmp(s.subs{1},':')	error('Input selection impossible for mapping')endif length(s.subs{2}) == 1 &  s.subs{2} == ':'	w = v;else	w = v*cmapm(v.c,s.subs{2});endreturn	

⌨️ 快捷键说明

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