function [varargout] = strcmp(varargin)
%STRCMP Compare strings.
%   STRCMP(S1,S2) returns logical 1 (true) if strings S1 and S2 are 
%   the same and logical 0 (false) otherwise.  
%
%   STRCMP(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, 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.
%
%   STRCMP supports international character sets.
%
%   See also STRNCMP, STRCMPI, STRFIND, STRMATCH, DEBLANK, REGEXP.

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


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