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

📄 isfeatim.m

📁 The pattern recognition matlab toolbox
💻 M
字号:
%ISFEATIM%% N = ISFEATIM(A);%% INPUT%   A   Input dataset%% OUTPUT%   N   1/0 if dataset A does/doesn't contain images%% DESCRIPTION% True if dataset contains features that are images.%% SEE ALSO% ISDATASET, ISMAPPING, ISDATAIM% $Id: isfeatim.m,v 1.2 2006/03/08 22:06:58 duin Exp $function n = isfeatim(a)		prtrace(mfilename);	% When the field objsize contains a vector instead of a scalar, the	% features inside the dataset are images:	n = isa(a,'dataset') & length(a.objsize) > 1;	if (nargout == 0) & (n == 0)		error([newline '---- Dataset with feature images expected -----'])	endreturn;

⌨️ 快捷键说明

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