EN JA
ATAN(3)
ATAN(3) FreeBSD Library Functions Manual ATAN(3)

名称

atan, atanf, atanl1 つの変数の逆正接 (アークタンジェント) 関数

ライブラリ

Math Library (libm, -lm)

書式

#include < math.h>

double
atan( double x);

float
atanf( float x);

long double
atanl( long double x);

解説

atan(), atanf() と atanl() 関数は、 x の逆正接 (アークタンジェント) の主値 (principal value) を計算します。

戻り値

これらの関数は、範囲[-pi/2, +pi/2]ラジアンの逆正接 (アークタンジェント) を返します。

規格

atan(), atanf() と atanl() 関数は、 ISO/IEC 9899:1999 (“ISO C99”) に適合しています。
July 31, 2008 FreeBSD