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

📄 getlab.m

📁 这个为模式识别工具箱
💻 M
字号:
%GETLAB Get labels of dataset or mapping%%  LABELS = GETLAB(A)%  LABELS = GETLAB(W)%% INPUT%  A      Dataset%  W      Mapping%% OUTPUT%  LABELS Labels%% DESCRIPTION% Returns the labels of the objects in the dataset A or the feature 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 row in A. All these labels have the% value NaN.%% Note that for datasets and mappings GETLAB() is effectively the same% as GETLABELS().%% SEE ALSO% DATASETS, MAPPINGS, GETLABELS% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Sciences, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlands% $Id: getlab.m,v 1.4 2003/08/18 12:29:56 pavel Exp $function labels = getlab(a)	prtrace(mfilename);	if isa(a,'dataset')		labels = getlabels(a,'crisp');	elseif isa(a,'mapping')		labels = getlabels(a);	else		labels = repmat(NaN,size(a,1),1);	end	return

⌨️ 快捷键说明

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