% CSCD CSCD Cosecant Degrees Function % % Usage % % Computes the cosecant of the argument, but takes % the argument in degrees instead of radians (as is the case % for csc). The syntax for its use is % % y = cscd(x) % function y = cscd(x) if (nargin == 0 || ~isnumeric(x)) error('cscd expects a numeric input'); end y = csc(deg2rad(x));