function y = atand(x)
%ATAND  Inverse tangent, result in degrees.
%   ATAND(X) is the inverse tangent, expressed in degrees,
%   of the elements of X.
%
%   Class support for input X:
%      float: double, single
%
%   See also TAND, ATAN.

%   Copyright 1984-2004 The MathWorks, Inc. 
%   $Revision: 1.1.6.3 $  $Date: 2004/06/25 18:51:49 $

if ~isreal(x)
    error('MATLAB:atand:ComplexInput', 'Argument should be real.');
end

y = 180/pi*atan(x);
