
<cmath> (math.h) - C++ Users
Header <cmath> declares a set of functions to compute common mathematical operations and transformations: Functions Trigonometric functions cos Compute cosine (function) sin …
round - C++ Users
Header <tgmath.h> provides a type-generic macro version of this function. Additional overloads are provided in this header ( <cmath> ) for the integral types : These overloads effectively cast …
pow - C++ Users
If base is zero and exponent is negative, it may cause a domain error or a pole error (or none, depending on the library implementation). The function may also cause a range error if the …
Reference - C++ Users
The elements of the C language library are also included as a subset of the C++ Standard library. These cover many aspects, from general utility functions and macros to input/output functions …
ceil - C++ Users
Header <tgmath.h> provides a type-generic macro version of this function. Additional overloads are provided in this header ( <cmath> ) for the integral types : These overloads effectively cast …
C library - C++ Users
The functions atexit, exit and abort, defined in <cstdlib> have additions to their behavior in C++. Overloaded versions of some functions are provided with additional types as parameters and …
sqrt - C++ Users
Header <tgmath.h> provides a type-generic macro version of this function. This function is overloaded in <complex> and <valarray> (see complex sqrt and valarray sqrt ). Additional …
atan - C++ Users
This function is overloaded in <valarray> (see valarray atan). Additional overloads are provided in this header ( <cmath> ) for the integral types : These overloads effectively cast x to a double …
log - C++ Users
The natural logarithm is the base-e logarithm: the inverse of the natural exponential function . For common (base-10) logarithms, see log10 . Header <tgmath.h> provides a type-generic macro …
log10 - C++ Users
This function is overloaded in <complex> and <valarray> (see complex log10 and valarray log10). Additional overloads are provided in this header ( <cmath> ) for the integral types : These …