function y = asind(x)
%ASIND  Inverse sine, result in degrees.
%   ASIND(X) is the inverse sine, expressed in degrees,
%   of the elements of X.
%
%   Class support for input X:
%      float: double, single
%
%   See also SIND, ASIN.

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

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

y = 180/pi*asin(x);
