atan

 

書式
double atan(double x);

機能
アーククタンジェントの値を求める。

戻り値
-π/2~+π/2;。

ヘッダーファイル
math.h

 

使用例

double a,b;
a = 1.0;
b = atan(a);