EQ overloads the == operator for analysis objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: EQ overloads the == operator for analysis objects. All fields are checked. CALL: result = eq(c1,c2) INPUTS: c1,c2 - input analysis objects OUTPUTS: If the two analysis objects are considered equal, result == 1, otherwise, result == 0. VERSION: $Id: eq.m,v 1.4 2007/08/29 18:46:02 hewitson Exp $ HISTORY: 29-08-2007 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function result = eq(c1,c2) 0002 0003 % EQ overloads the == operator for analysis objects. 0004 % 0005 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0006 % 0007 % DESCRIPTION: EQ overloads the == operator for analysis objects. 0008 % 0009 % All fields are checked. 0010 % 0011 % CALL: result = eq(c1,c2) 0012 % 0013 % INPUTS: c1,c2 - input analysis objects 0014 % 0015 % OUTPUTS: If the two analysis objects are considered equal, result == 1, 0016 % otherwise, result == 0. 0017 % 0018 % VERSION: $Id: eq.m,v 1.4 2007/08/29 18:46:02 hewitson Exp $ 0019 % 0020 % HISTORY: 29-08-2007 M Hewitson 0021 % Creation 0022 % 0023 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0024 0025 % Assume equality to begin with 0026 result = 1; 0027 0028 %% Check name 0029 if ~strcmp(c1.name, c2.name) 0030 result = 0; 0031 return 0032 end 0033