asin

 

書式
double asin(double x);

機能
引数-1から+1のアークサインの値を求める。

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

ヘッダーファイル
math.h

 

使用例

double a,b;
a = 0.5;
b = asin(a);