www.gusucode.com > 机器人工具箱 - robot源码程序 > robot\numcols.m

    %
% NUMCOLS(m)
%
%	Return the number of columns in the matrix m
%
function c = numcols(m)
	[x,c] = size(m);