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

📄 getfeat.m

📁 模式识别工具箱,本人毕业论文时用到的,希望对大家有用!
💻 M
字号:
%GETFEAT Get feature labels of dataset or mapping%%	labels = getfeat(a)%	labels = getfeat(w)%% Returns the labels of the features in the dataset a or the labels% assigned by the mapping w.%% If a (or w) is neither a dataset nor a mapping, a set of dummy% labels is returned, one for each column in a. All these labels have the% value 255.%% Note that for a mapping w, getfeat(w) is effectively the same as getlab(w).%% See datasets, mappings, getlab% 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 labels = getfeat(a)if isa(a,'dataset')	labels = getfeatd(a);elseif isa(a,'mapping')	labels = getlabm(a);else	labels = 255*ones(size(a,2),1);endreturn

⌨️ 快捷键说明

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