📄 islist.m
字号:
function B = islist(variable)% RECVAR, A package for new data types in Matlab 4. % (c) FOA 1997. See the file rvright.m for copyright notice.%% function B = islist(variable)%% Returns 1 if the argument is a list and 0 otherwise.%% B BoolT% variable Any type%% Start : 970819 Svante Bj鰎klund (svabj).% Latest change: $Date: 2000/10/13 19:53:37 $ $Author: svabj $.% $Revision: 1.1 $% *****************************************************************************B = 0;if (isrecvar(variable)) if existr(variable,'dataType') if (strcmp(getr(variable,'dataType'),'ls')) B = 1; end endend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -