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> | ||
(1) | ||
int fpclassify(float num); int fpclassify(double num); | (since C++11) (until C++23) | |
constexprint fpclassify(/* floating-point-type */ num); | (since C++23) | |
Defined in header <cmath> | ||
template<class Integer> int fpclassify( Integer num); | (A) | (since C++11) (constexpr since C++23) |
std::fpclassify
for all cv-unqualified floating-point types as the type of the parameternum.(since C++23)Contents |
num | - | floating-point or integer value |
one ofFP_INFINITE,FP_NAN,FP_NORMAL,FP_SUBNORMAL,FP_ZERO or implementation-defined type, specifying the category ofnum.
The additional overloads are not required to be provided exactly as(A). They only need to be sufficient to ensure that for their argumentnum of integer type,std::fpclassify(num) has the same effect asstd::fpclassify(static_cast<double>(num)).
#include <cfloat>#include <cmath>#include <iostream> auto show_classification(double x){switch(std::fpclassify(x)){caseFP_INFINITE:return"Inf";caseFP_NAN:return"NaN";caseFP_NORMAL:return"normal";caseFP_SUBNORMAL:return"subnormal";caseFP_ZERO:return"zero";default:return"unknown";}} int main(){std::cout<<"1.0/0.0 is "<< show_classification(1/0.0)<<'\n'<<"0.0/0.0 is "<< show_classification(0.0/0.0)<<'\n'<<"DBL_MIN/2 is "<< show_classification(DBL_MIN/2)<<'\n'<<"-0.0 is "<< show_classification(-0.0)<<'\n'<<"1.0 is "<< show_classification(1.0)<<'\n';}
Output:
1.0/0.0 is Inf0.0/0.0 is NaNDBL_MIN/2 is subnormal-0.0 is zero1.0 is normal
(C++11) | checks if the given number has finite value (function)[edit] |
(C++11) | checks if the given number is infinite (function)[edit] |
(C++11) | checks if the given number is NaN (function)[edit] |
(C++11) | checks if the given number is normal (function)[edit] |
provides an interface to query properties of all fundamental numeric types (class template)[edit] | |
C documentation forfpclassify |