ismulmat.m

来自「阵列雷达信号处理工具箱 阵列雷达信号处理工具箱」· M 代码 · 共 23 行

M
23
字号
function B = ismulmat(variable)% RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice.%% function B = ismulmat(variable)%% Returns 1 if the argument is a multimatrix and 0 otherwise.% Matlab 5 compatibility version.%% B		BoolT% variable	Any type% Start        : 961008 Svante Bj鰎klund (svabj).% Latest change: $Date: 1997/08/20 13:36:21 $ $Author: svabj $.% $Revision: 1.1 $% *****************************************************************************B = 0;if (ndims(variable) > 2)  B = 1;end

⌨️ 快捷键说明

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