function [varargout] = bitand(varargin)
%BITAND Bit-wise AND.
%   C = BITAND(A,B) returns the bitwise AND of arguments A and B, 
%   where A and B are unsigned integers or arrays of unsigned integers.
%
%   Example:
%      Create a truth table:
%      A = uint8([0 1; 0 1])
%      B = uint8([0 0; 1 1])
%      TT = bitand(A,B)
%
%   See also BITOR, BITXOR, BITCMP, BITSHIFT, BITSET, BITGET, INTMAX.

%   Copyright 1984-2004 The MathWorks, Inc. 
%   $Revision: 1.12.4.3 $  $Date: 2004/12/06 16:35:28 $

if nargout == 0
  builtin('bitand', varargin{:});
else
  [varargout{1:nargout}] = builtin('bitand', varargin{:});
end
