std::sqrt
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float sqrt( float arg ); |
||
double sqrt( double arg ); |
||
long double sqrt( long double arg ); |
||
double sqrt( Integral arg ); |
(C++11 起) | |
计算平方根
arg
.[编辑] 参数
arg | - | 浮点或整数值
|
[编辑] 返回值
平方根的
arg
域时会出现错误
arg
为负。 NAN是在这种情况下,返回.原文:
Domain error occurs if
arg
is negative. NAN is returned in that case.[编辑] 另请参阅
(C++11) |
计算立方米的根(3√x) (函数) |
引起了一些给定的功率(xy) 原文: raises a number to the given power (xy) (函数) | |
在右半平面的范围内的复杂的平方根 原文: complex square root in the range of the right half-plane (函数模板) | |
std::sqrtvalarray的每个元素的功能 原文: applies the function std::sqrt to each element of valarray (函数模板) |