常用数学函数
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
[编辑] 功能
在头文件
<cmath> 中定义 | |
| |
(C++11) |
计算整数的绝对值(|x|) 原文: computes absolute value of an integral value (|x|) (函数) |
计算浮点数的绝对值(|x|) 原文: absolute value of a floating point value (|x|) (函数) | |
(C++11) |
商和余数的整数除法 原文: the quotient and remainder of integer division (函数) |
浮点除法运算的余数 原文: remainder of the floating point division operation (函数) | |
(C++11) |
除法运算的有符号余数 原文: signed remainder of the division operation (函数) |
(C++11) |
除法运算的带符号余数以及最后三个位 原文: signed remainder as well as the three last bits of the division operation (函数) |
(C++11) |
混合的乘加操作 (函数) |
(C++11) |
两个浮点值的较大值 原文: larger of two floating point values (函数) |
(C++11) |
两个浮点值的较小值 原文: smaller of two floating point values (函数) |
(C++11) |
两个浮点值的正差值(max(0, x-y)) 原文: positive difference of two floating point values (max(0, x-y)) (函数) |
(C++11) (C++11) (C++11) |
不是数字的值(NaN) (函数) |
| |
返回“E”的给定数次方(ex) 原文: returns e raised to the given power (ex) (函数) | |
(C++11) |
返回“2”给定数次方(2x) 原文: returns 2 raised to the given power (2x) (函数) |
(C++11) |
返回“E”给定数次方减一(ex-1) 原文: returns e raised to the given power, minus one (ex-1) (函数) |
计算自然对数(以“E”为底)(ln(x)) 原文: computes natural (base e) logarithm (to base e) (ln(x)) (函数) | |
计算常用对数(以“10”为底)(log10(x)) 原文: computes common (base 10) logarithm (log10(x)) (函数) | |
(C++11) |
1加给定数的自然对数(以“E”为底)(ln(x+1)) 原文: natural logarithm (to base e) of 1 plus the given number (函数) |
(C++11) |
以2为底的给定数的对数(log2(x)) 原文: base 2 logarithm of the given number (函数) |
| |
计算平方根(√x) (函数) | |
(C++11) |
计算立方根(3√x) (函数) |
(C++11) |
计算两个给定数值的平方之和的平方根(√x2 +y2 ) 原文: computes square root of the sum of the squares of two given numbers (√x2 +y2 ) (函数) |
计算两个给定数的幂(xy) 原文: raises a number to the given power (xy) (函数) | |
| |
计算的正弦(sin(x)) (函数) | |
计算余弦(cos(x)) (函数) | |
计算角正切(tan(x)) (函数) | |
计算弧的正弦(arcsin(x)) (函数) | |
计算反余弦(arccos(x)) (函数) | |
计算反正切值(arctan(x)) (函数) | |
圆弧相切,使用标志来确定象限 原文: arc tangent, using signs to determine quadrants (函数) | |
| |
计算双曲正弦(sh(x)) (函数) | |
计算双曲余弦(ch(x)) (函数) | |
双曲正切 (函数) | |
(C++11) |
双曲反正弦 (函数) |
(C++11) |
双曲反余弦 (函数) |
(C++11) |
双曲反正切 (函数) |
| |
(C++11) |
误差函数 (函数) |
(C++11) |
互补误差函数 (函数) |
(C++11) |
伽玛函数的自然对数 原文: natural logarithm of the gamma function (函数) |
(C++11) |
伽玛函数 (函数) |
原文: Nearest integer floating point operations | |
最接近的整数不小于给定的值 原文: nearest integer not less than the given value (函数) | |
最接近的整数不大于给定值 原文: nearest integer not greater than the given value (函数) | |
(C++11) |
最接近的整数的幅值比不大于给定值 原文: nearest integer not greater in magnitude than the given value (函数) |
(C++11) (C++11) (C++11) |
最接近的整数,四舍五入的距离零中途情况下 原文: nearest integer, rounding away from zero in halfway cases (函数) |
(C++11) |
最接近的整数,使用当前的舍入模式 原文: nearest integer using current rounding mode (函数) |
(C++11) (C++11) (C++11) |
最接近的整数 的结果是不同的异常,如果使用当前的舍入模式 原文: nearest integer using current rounding mode with exception if the result differs (函数) |
原文: Floating point manipulation functions | |
将一个数字分解为符号和2的幂 原文: decomposes a number into significand and a power of 2 (函数) | |
计算一个数乘2的另一个数次方 原文: multiplies a number by 2 raised to a power (函数) | |
分解一个数字的整数部分和小数部分 原文: decomposes a number into integer and fractional parts (函数) | |
(C++11) (C++11) |
一个数乘FLT_RADIX的另一个数次方 原文: multiplies a number by FLT_RADIX raised to a power (函数) |
(C++11) |
提取数字的指数 (函数) |
(C++11) |
提取数字的指数 (函数) |
(C++11) (C++11) |
给定值的下一个可表示浮点值 原文: next representable floating point value towards the given value (函数) |
(C++11) |
复制浮点值的符号 原文: copies the sign of a floating point value (函数) |
| |
(C++11) |
对给定的浮点值分类 原文: categorizes the given floating point value (函数) |
(C++11) |
检查给定的浮点值是否为有限值 原文: checks if the given number has finite value (函数) |
(C++11) |
检查给定的浮点值是否是无限值 原文: checks if the given number is infinite (函数) |
(C++11) |
检查给定的浮点值是否是NaN (函数) |
(C++11) |
检查给定的数字是否是规格化的 原文: checks if the given number is normal (函数) |
(C++11) |
检查给定的浮点值是否为负 原文: checks if the given number is negative (函数) |
(C++11) |
检查第一个浮点值参数是否大于第二个 原文: checks if the first floating-point argument is greater than the second (函数) |
(C++11) |
检查第一个浮点值参数是否大于等于第二个 原文: checks if the first floating-point argument is greater or equal than the second (函数) |
(C++11) |
检查第一个浮点值参数是否小于第二个 原文: checks if the first floating-point argument is less than the second (函数) |
(C++11) |
检查第一个浮点值参数是否小于等于第二个 原文: checks if the first floating-point argument is less or equal than the second (函数) |
(C++11) |
检查第一个浮点值参数是否不等于第二个 原文: checks if the first floating-point argument is less or greater than the second (函数) |
(C++11) |
检查给定的两个浮点值是否无序 原文: checks if two floating-point values are unordered (函数) |
[编辑] 类型
在头文件
<cmath> 中定义 | |
float_t
|
至少和float等宽的高性能浮点类型
原文: most efficient floating-point type at least as wide as float |
double_t
|
至少和double等宽的高性能浮点类型
原文: most efficient floating-point type at least as wide as double |
在头文件
<cstdlib> 中定义 | |
div_t
|
结构类型,std::div函数的返回值
原文: structure type, return of the std::div function |
ldiv_t
|
结构类型,std::ldiv函数的返回值
原文: structure type, return of the std::ldiv function |
lldiv_t
|
结构类型,std::lldiv函数的返回值
原文: structure type, return of the std::lldiv function |
在头文件
<cinttypes> 中定义 | |
imaxdiv_t
|
结构类型,std::imaxdiv函数的返回值
原文: structure type, return of the std::imaxdiv function |
[编辑] 宏常量
在头文件
<cmath> 中定义 | |
(C++11) (C++11) |
分别表示float,double和long double的溢出值 原文: indicates the overflow value for float, double and long double respectively (常量宏) |
(C++11) |
计算结果为正无穷大或在float上一定溢出的值 原文: evaluates to positive infinity or the value guaranteed to overflow a float (常量宏) |
(C++11) |
计算结果为float的一个静默NaN 原文: evaluates to a quiet NaN of type float (常量宏) |
(C++11) (C++11) (C++11) |
定义常见的数学函数使用的错误处理机制 原文: defines the error handling mechanism used by the common mathematical functions (常量宏) |
| |
(C++11) (C++11) (C++11) (C++11) (C++11) |
表示浮点数的类别 原文: indicates a floating-point category (常量宏) |
在头文件
<cfloat> 中定义 |
[编辑] 另见
C语言文档 for 常用数学函数
|