isequal.m 373 B

12345678910
  1. function res = isequal(this, that)
  2. % Method to check if 2 MEEG objects are the same
  3. % FORMAT res = isequal(this, that)
  4. % _______________________________________________________________________
  5. % Copyright (C) 2011 Wellcome Trust Centre for Neuroimaging
  6. % Christophe Phillips
  7. % $Id: isequal.m 5025 2012-10-31 14:44:13Z vladimir $
  8. res = isequal(struct(this), struct(that));