asinf函数
概要:
#include <math.h> float asinf(float x);
描述:
该函数计算参数x的反正弦值。
如果参数x不在区间[-1,+1]内,将发生域错误。
参数:
float x
参数为一个float类型的浮点数,取值范围为-1≤x≤1。
返回值:
函数返回参数x的反正弦值,返回值为区间[-π/2,+π/2]内的弧度值。
范例:
|
|
输出:
The arc sine of 1.00 is 90 degrees.
相关内容:
asin | double类型的反正弦函数。 |
asinl | long double类型的反正弦函数。 |