NE overloads the ~= operator for mfir objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: NE overloads the ~= operator for mfir objects. CALL: result = ne(f1,f1) INPUTS: f1,f2 - input mfir objects OUTPUTS: If the two mfir objects are considered equal, result == 0, otherwise, result == 1. VERSION: $Id: param.m,v 1.7 2007/08/17 11:22:11 ingo Exp $ HISTORY: 29-08-2007 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function result = ne(f1,f2) 0002 0003 % NE overloads the ~= operator for mfir objects. 0004 % 0005 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0006 % 0007 % DESCRIPTION: NE overloads the ~= operator for mfir objects. 0008 % 0009 % CALL: result = ne(f1,f1) 0010 % 0011 % INPUTS: f1,f2 - input mfir objects 0012 % 0013 % OUTPUTS: If the two mfir objects are considered equal, result == 0, 0014 % otherwise, result == 1. 0015 % 0016 % VERSION: $Id: param.m,v 1.7 2007/08/17 11:22:11 ingo Exp $ 0017 % 0018 % HISTORY: 29-08-2007 M Hewitson 0019 % Creation 0020 % 0021 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0022 0023 if eq(f1,f1) 0024 result = 0; 0025 else 0026 result = 1; 0027 end 0028 0029 % END