std::abs<div class="t-tr-text">(浮动)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">原文:</div><div class="t-tr-dropdown-orig">(float)</div><div class="t-tr-dropdown-notes">这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。<br/>您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。</div></div></div></div></div>, std::fabs
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float abs( float arg ); |
||
double abs( double arg ); |
||
long double abs( long double arg ); |
||
float fabs( float arg ); |
||
double fabs( double arg ); |
||
long double fabs( long double arg ); |
||
double fabs( Integral arg ); |
(C++11 起) | |
计算一个浮点值的绝对值
arg
.原文:
Computes the absolute value of a floating point value
arg
.[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
的绝对值
arg
(|arg|
)[编辑] 另请参阅
(C++11) |
计算的积分值(|x|)的绝对值 原文: computes absolute value of an integral value (|x|) (函数) |
(C++11) |
给定数量的检查,如果是否定的 原文: checks if the given number is negative (函数) |
返回一个复数的幅度 原文: returns the magnitude of a complex number (函数模板) | |
std::absvalarray的每个元素的功能 原文: applies the function std::abs to each element of valarray (函数模板) |