home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts.fat / misc / xor.m < prev   
Text File  |  1999-12-24  |  2KB  |  42 lines

  1. ## Copyright (C) 1995, 1996  Kurt Hornik
  2. ## 
  3. ## This program is free software; you can redistribute it and/or modify
  4. ## it under the terms of the GNU General Public License as published by
  5. ## the Free Software Foundation; either version 2, or (at your option)
  6. ## any later version.
  7. ## 
  8. ## This program is distributed in the hope that it will be useful, but
  9. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. ## General Public License for more details. 
  12. ## 
  13. ## You should have received a copy of the GNU General Public License
  14. ## along with this file.  If not, write to the Free Software Foundation,
  15. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16.  
  17. ## -*- texinfo -*-
  18. ## @deftypefn {Mapping Function} {} xor (@var{x}, @var{y})
  19. ## Return the `exclusive or' of the entries of @var{x} and @var{y}.
  20. ## For boolean expressions @var{x} and @var{y},
  21. ## @code{xor (@var{x}, @var{y})} is true if and only if @var{x} or @var{y}
  22. ## is true, but not if both @var{x} and @var{y} are true.
  23. ## @end deftypefn
  24.  
  25. ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at>
  26. ## Created: 16 September 1994
  27. ## Adapted-By: jwe
  28.  
  29. function z = xor (x, y)
  30.  
  31.   if (nargin == 2)
  32.     if (is_scal (x) || is_scal (y) || size (x) == size (y))  
  33.       z = logical ((x | y) - (x & y));
  34.     else
  35.       error ("xor: x and y must be of common size or scalars");
  36.     endif
  37.   else
  38.     usage ("xor (x, y)");
  39.   endif
  40.  
  41. endfunction
  42.