std::asin
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float asin( float arg ); |
||
double asin( double arg ); |
||
long double asin( long double arg ); |
||
double asin( Integral arg ); |
(C++11 起) | |
计算反正弦
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++11) |
computes arc sine of a complex number (arcsin(z)) (函数模板) |
std::asinvalarray的每个元素的功能 原文: applies the function std::asin to each element of valarray (函数模板) |