asin
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float asinf( float arg ); |
||
double asin( double arg ); |
||
long double asinl( long double arg ); |
||
计算反正弦
arg
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
电弧正弦
arg
[-π/2; π/2]
弧度的范围内以弧度.原文:
Arc sine of
arg
in radians in the range of [-π/2; π/2]
radians.域时会出现错误
arg
范围以外的[-1.0; 1.0]
。 NAN是在这种情况下,返回.原文:
Domain error occurs if
arg
is outside the range [-1.0; 1.0]
. NAN is returned in that case.[编辑] 另请参阅
计算反余弦(arccos(x)) (函数) | |
计算反正切值(arctan(x)) (函数) | |
圆弧相切,使用标志来确定象限 原文: arc tangent, using signs to determine quadrants (函数) | |
计算的正弦(sin(x)) (函数) | |
C++ documentation for asin
|