std::sin
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float sin( float arg ); |
||
double sin( double arg ); |
||
long double sin( long double arg ); |
||
double sin( Integral arg ); |
(C++11 起) | |
计算正弦
arg
[编辑] 参数
arg | - | 浮点值,表示以弧度表示的角度
原文: floating point value representing angle in radians |
[编辑] 返回值
正弦
arg
的范围内[-1 ; +1] 域时会出现错误
arg
是无限的。 NAN是在这种情况下,返回.原文:
Domain error occurs if
arg
is infinite. NAN is returned in that case.[编辑] 另请参阅
计算余弦(cos(x)) (函数) | |
计算角正切(tan(x)) (函数) | |
计算弧的正弦(arcsin(x)) (函数) | |
计算一个复数(sin(z))的正弦 原文: computes sine of a complex number (sin(z)) (函数模板) | |
std::sinvalarray的每个元素的功能 原文: applies the function std::sin to each element of valarray (函数模板) |