📄 checkstructfields.m
字号:
function errstring = checkstructfields(ds,varargin)% CHECKSTRUCTFIELDS Checks if a data structure has the required fields.%% errstring = checkstructfields(ds, field1, field2, ...)%% This function checks if data structure 'ds' has the fields specified by the% character arrays (strings) 'field1', 'field2', ... e.g.%% missing_fields = checkstructfields(ds, 'field1', 'field2', 'field3');%% The names of the missing fields are returned in 'errstring'.%
% Copyright (c) Oregon Health & Science University (2006)
%
% This file is part of the ReBEL Toolkit. The ReBEL Toolkit is available free for
% academic use only (see included license file) and can be obtained from
% http://choosh.csee.ogi.edu/rebel/. Businesses wishing to obtain a copy of the
% software should contact rebel@csee.ogi.edu for commercial licensing information.
%% See LICENSE (which should be part of the main toolkit distribution) for more% detail.%===============================================================================================errstring = '';%-- Check existence of required data structure fieldsfor j=1:length(varargin), if ~ischar(varargin{j}) error(' [ checkstructfields ] The field name arguments should be character arrays (strings).'); end if ~isfield(ds,varargin{j}), errstring = [varargin{j} ' ']; endend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -