fieldnames.m 402 B

123456789101112
  1. function res = fieldnames(this, varargin)
  2. % Returns names of the fields in .other
  3. % FORMAT res = fieldnames(this)
  4. %
  5. % An overloaded function...
  6. % _______________________________________________________________________
  7. % Copyright (C) 2008-2012 Wellcome Trust Centre for Neuroimaging
  8. % Vladimir Litvak
  9. % $Id: fieldnames.m 5025 2012-10-31 14:44:13Z vladimir $
  10. res = fieldnames(this.other, varargin{:});