]> Creatis software - CreaPhase.git/blob - octave_packages/m/general/isequalwithequalnans.m
update packages
[CreaPhase.git] / octave_packages / m / general / isequalwithequalnans.m
1 ## Copyright (C) 2005-2012 William Poetra Yoga Hadisoeseno
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} isequalwithequalnans (@var{x1}, @var{x2}, @dots{})
21 ## Assuming NaN == NaN, return true if all of @var{x1}, @var{x2}, @dots{}
22 ## are equal.
23 ## @seealso{isequal}
24 ## @end deftypefn
25
26 function retval = isequalwithequalnans (x1, varargin)
27
28   if (nargin < 2)
29     print_usage ();
30   endif
31
32   retval = __isequal__ (true, x1, varargin{:});
33
34 endfunction
35
36 ## test for equality
37 %!assert(isequalwithequalnans({1,2,NaN,4},{1,2,NaN,4}), true)
38 %!assert(isequalwithequalnans([1,2,NaN,4],[1,2,NaN,4]), true)
39 ## test for inequality
40 %!assert(isequalwithequalnans([1,2,NaN,4],[1,NaN,3,4]),false)
41 %!assert(isequalwithequalnans([1,2,NaN,4],[1,2,3,4]),false)
42 ## test for equality (struct)
43 %!assert(isequalwithequalnans(struct('a',NaN,'b',2),struct('a',NaN,'b',2),struct('a',NaN,'b',2)),true)
44 %!assert(isequalwithequalnans(1,2,1), false)