view scripts/general/isequal.m @ 5307:4c8a2e4e0717

[project @ 2005-04-26 19:24:27 by jwe]
author jwe
date Tue, 26 Apr 2005 19:24:47 +0000
parents 5b361aa47dff
children c8783205a7c6
line wrap: on
line source

## Copyright (C) 2000 Paul Kienzle
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, write to the Free
## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301, USA.

## -*- texinfo -*-
## @deftypefn {Function File} {} isequal (@var{x1}, @var{x2}, @dots{}, @var{xN})
## Return true if all parts of @var{x1}, @var{x2}, @dots{}, @var{xN} are
## equal.
## @end deftypefn

## Author: Paul Kienzle
## Adapted-by: jwe

function t = isequal (x, varargin)

  if (nargin != 2)
    usage ("isequal (x, y, ...)");
  endif

  for arg = 1:length (varargin)
    y = varargin{arg};
    if (isstruct (x))
      t = isstruct (y);
      for [v, k] = x
        t = (t
	     && struct_contains (y, k)
	     && isequal (getfield (x, k), getfield (y, k)));
      endfor
      for [v, k] = y
        t = t && struct_contains (x, k);
      endfor
    elseif (islist (x))
      t = islist(y) && length(x) == length(y);
      if (! t)
	return;
      endif
      for i = 1:length (x)
	t = isequal (x{i}, y{i});
	if (! t)
	  return;
	endif
      endfor
    elseif (any (size (x) != size (y)))
      t = false;
    elseif (iscell (x) || islist (x))
      t = iscell (y) || islist (y);
      if (! t)
	return;
      endif
      x = x(:);
      y = y(:);
      for i = 1:length (x)
	t = isequal (x{i}, y{i});
	if (! t)
	  return;
	endif
      endfor
    else
      t = all (x(:) == y(:));
    endif
    if (! t)
      return;
    endif
  endfor

endfunction