checkstructfields.m

来自「有关kalman滤波及其一些变形滤波算法」· M 代码 · 共 38 行

M
38
字号
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 + =
减小字号Ctrl + -
显示快捷键?