function y = acscd(x)
%ACSCD  Inverse cosecant, result in degrees.
%   ACSCD(X) is the inverse cosecant, expressed in degrees,
%   of the elements of X.
%
%   Class support for input X:
%      float: double, single
%
%   See also CSCD, ACSC.

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

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

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