isfield.m 479 B

12345678910111213
  1. function res = isfield(this, varargin)
  2. % Returns true if the string fieldname is the name of a field in the
  3. % substructure 'other' in the meeg object 'this'.
  4. % FORMAT res = isfield(this,fieldname)
  5. %
  6. % An overloaded function...
  7. % _______________________________________________________________________
  8. % Copyright (C) 2008 Wellcome Trust Centre for Neuroimaging
  9. % Christophe Phillips
  10. % $Id: isfield.m 2720 2009-02-09 19:50:46Z vladimir $
  11. res = isfield(this.other, varargin{:});