std::abs(float), std::fabs

From cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
abs(float)fabs
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Exponential functions
(C++11)
(C++11)
(C++11)
(C++11)
Power functions
(C++11)
(C++11)
Trigonometric and hyperbolic functions
(C++11)
(C++11)
(C++11)
Error and gamma functions
(C++11)
(C++11)
(C++11)
(C++11)
Nearest integer floating point operations
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Floating point manipulation functions
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classification/Comparison
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Macro constants
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Defined in header <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 );
(since C++11)

Computes the absolute value of a floating point value arg.

[edit] Parameters

arg - Value of a floating-point or Integral type

[edit] Return value

The absolute value of arg (|arg|).

[edit] See also

computes absolute value of an integral value (|x|)
(function)
(C++11)
checks if the given number is negative
(function)
returns the magnitude of a complex number
(function template)
applies the function std::abs to each element of valarray
(function template)
C documentation for fabs