Provided by: manpages-ja-dev_0.5.0.0.20070415-1_all bug
     前
        atan, atanf, atanl - 逆正接(アークタンジェント)関数
 
     式
        #include <math.h>
 
        double atan(double x);
        float atanf(float x);
        long double atanl( long double x);
 
        -lm でリンクする。
 
     明
        atan()     x    の逆正接(アークタンジェント)を計算する。   すなわち、
        その正接(タンジェント)が x となるような値である。
 
         値
        atan()         関数は逆正接(アークタンジェント)をラジアン単位で返し、
        数学的には -PI/2 と PI/2(両端を含む) の間になるように定義されている。
 
     拠
        SVr4, POSIX.1-2001, 4.3BSD, C89.   float  版と  long  double  版は  C99
        の要求仕様である。
 
             
        acos(3), asin(3), atan2(3), carg(3), catan(3), cos(3), sin(3), tan(3)
 
                                   2002-07-27                           ATAN(3)