isstruct.m
来自「matpower软件下」· M 代码 · 共 12 行
M
12 行
function t = isstruct(a)
%ISSTRUCT True for structures.
% ISSTRUCT(S) returns 1 if S is a structure and 0 otherwise.
%
% See also STRUCT, ISFIELD, ISCELL, ISNUMERIC, ISOBJECT.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 1.17 $ $Date: 2002/04/15 03:21:27 $
t = isa(a,'struct');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?