asin.c 870 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: asin.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:asin
-----------------------------------------------------------------------------
書式:  #include <math.h>
        double asin(double x)
引数:  x (-1〜1の範囲)
戻り値:アークサイン(−π/2〜π/2の範囲)
説明:  引数 x のアークサインを求める。
-----------------------------------------------------------------------------
*/
#include "math.h"


double asin(double x)
{
    double  z;

    if (fabs(x)>1) return DVAL_ZERO;
    z = sqrt(1-x*x);
    if (z != 0) return atan2(x,z);
    if (x>0) return DVAL_PI/2;
    else return -DVAL_PI/2;
}