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

📄 iscolumn.m

📁 这个为模式识别工具箱
💻 M
字号:
%ISCOLUMN Checks whether the argument is a column array%%   [OK,Y] = ISCOLUMN(X)% % INPUT% 	X   Array: an array of entities such as numbers, strings or cells%% OUTPUT% 	OK  1 if X is a column array and 0, otherwise%   Y   X or X' to ensure that Y is a column array%% DESCRIPTION% Returns 1 if X is a column array and 0, otherwise. Y is the column% version of X. If X is a matrix, an error is returned.%% Important: note that an array of one entity only is considered as % a column array. So, X = 'Apple', X = {'Apple'} or X = 1 are column% arrays.%function [ok,x] = iscolumn(x)  	s = size(x);	  if (isstr(x)) 	% Char array    ok = 1;	else								% Vector of numbers		ok = (s(1) > 1 & s(2) == 1) | all(s == 1);		if all(s > 1)			error('X is a matrix. A vector is expected.');		end	end  if (~ok), x = x'; endreturn;

⌨️ 快捷键说明

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