function y = asecd(x)
%ASECD  Inverse secant, result in degrees.
%   ASECD(X) is the inverse secant, expressed in degrees,
%   of the elements of X.
%
%   Class support for input X:
%      float: double, single
%
%   See also SECD, ASEC.

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

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

y = 180/pi*acos(1./x);
