function [varargout] = acos(varargin)
%ACOS   Inverse cosine, result in radians.
%   ACOS(X) is the arccosine of the elements of X. Complex
%   results are obtained if ABS(x) > 1.0 for some element.
%
%   See also COS, ACOSD.

%   Copyright 1984-2003 The MathWorks, Inc.
%   $Revision: 5.7.4.4 $  $Date: 2004/12/06 16:34:40 $
%   Built-in function.

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