function [varargout] = strcmpi(varargin)
%STRCMPI Compare strings ignoring case.
%   STRCMPI(S1,S2) returns logical 1 (true) if strings S1 and S2 are the 
%   same except for case and logical 0 (false) otherwise.  
%
%   STRCMPI(S,T), when either S or T is a cell array of strings, returns 
%   an array the same size as S and T containing logical 1 (true) for 
%   those elements of S and T that match except for case, and logical 0 
%   (false) otherwise.  S and T must be the same size (or one can be a 
%   scalar cell).  Either one can also be a character array with the 
%   right number of rows.
%
%   STRCMPI supports international character sets.
%
%   See also STRCMP, STRNCMPI, FINDSTR, STRMATCH, REGEXPI.

%   Copyright 1984-2004 The MathWorks, Inc. 
%   $Revision: 1.7.4.4 $  $Date: 2004/11/23 20:40:07 $
%   Built-in function.


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