function y = csc(z)
%CSC    Cosecant of argument in radians.
%   CSC(X) is the cosecant of the elements of X.
%
%   Class support for input X:
%      float: double, single
%
%   See also ACSC, CSCD.

%   Copyright 1984-2004 The MathWorks, Inc. 
%   $Revision: 5.8.4.4 $  $Date: 2004/12/06 16:34:48 $

if nargin==0 
  error('MATLAB:csc:NotEnoughInputs','Not enough input arguments.');
end

y = 1./sin(z);
