numrows.m

来自「Robotics TOOLBOX The Toolbox provides m」· M 代码 · 共 19 行

M
19
字号
%NUMROWS Return number of rows in matrix%%	NR = NUMROWS(M)%% Return the number of rows in the matrix M.% Copyright (C) 1993-2002, by Peter I. Corke% $Log: numrows.m,v $% Revision 1.2  2002/04/01 11:47:15  pic% General cleanup of code: help comments, see also, copyright, remnant dh/dyn% references, clarification of functions.%% $Revision: 1.2 $function r = numrows(m)	[r,x] = size(m);

⌨️ 快捷键说明

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