Common mathematical functions | |||||||||||||||||||||||||||||||
Mathematical special functions(C++17) | |||||||||||||||||||||||||||||||
Mathematical constants(C++20) | |||||||||||||||||||||||||||||||
Basic linear algebra algorithms(C++26) | |||||||||||||||||||||||||||||||
Data-parallel types (SIMD)(C++26) | |||||||||||||||||||||||||||||||
Floating-point environment(C++11) | |||||||||||||||||||||||||||||||
Complex numbers | |||||||||||||||||||||||||||||||
Numeric array (valarray ) | |||||||||||||||||||||||||||||||
Pseudo-random number generation | |||||||||||||||||||||||||||||||
Bit manipulation(C++20) | |||||||||||||||||||||||||||||||
Saturation arithmetic(C++26) | |||||||||||||||||||||||||||||||
Factor operations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
Interpolations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
Generic numeric operations | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
C-style checked integer arithmetic | |||||||||||||||||||||||||||||||
|
Nearest integer floating point operations | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
Floating point manipulation functions | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
Classification and comparison | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
Types | |||||||||||||||||||||||||||||||||||||||||
Macro constants | |||||||||||||||||||||||||||||||||||||||||
|
|
Defined in header <cmath> | ||
#define INFINITY /*implementation defined*/ | (since C++11) | |
If the implementation supports floating-point infinities, the macroINFINITY
expands to constant expression of typefloat which evaluates to positive or unsigned infinity.
If the implementation does not support floating-point infinities, the macroINFINITY
expands to a positive value that is guaranteed to overflow afloat at compile time, and the use of this macro generates a compiler warning.
(C++11) | checks if the given number is infinite (function)[edit] |
(C++11)(C++11) | indicates the overflow value forfloat,double andlongdouble respectively (macro constant)[edit] |
[static] | identifies floating-point types that can represent the special value "positive infinity" (public static member constant of std::numeric_limits<T> )[edit] |
[static] | returns the positive infinity value of the given floating-point type (public static member function of std::numeric_limits<T> )[edit] |
C documentation forINFINITY |