function y = cscd(x)
%CSCD   Cosecant of argument in degrees.
%   CSCD(X) is the cosecant of the elements of X, expressed in degrees.
%   For integers n, cscd(n*180) is infinite, whereas csc(n*pi) is large
%   but finite, reflecting the accuracy of the floating point value for pi.
%
%   Class support for input X:
%      float: double, single
%
%   See also ACSCD, CSC.

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

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

y = 1./sind(x);
