|
| double | std::log10 (double x) |
| | Computes the base-10 logarithm of a number. More...
|
| |
| double | std::exp (double x) |
| | Computes the exponential function of a number. More...
|
| |
| double | std::sqrt (double x) |
| | Computes the square root of a number. More...
|
| |
| double | std::pow (double base, double exponent) |
| | Computes the power of a number. More...
|
| |
| double | std::sin (double x) |
| | Computes the sine of a number. More...
|
| |
| double | std::cos (double x) |
| | Computes the cosine of a number. More...
|
| |
| double | std::tan (double x) |
| | Computes the tangent of a number. More...
|
| |
| int | std::abs (int x) |
| | Computes the absolute value of an integer. More...
|
| |
| double | std::fabs (double x) |
| | Computes the absolute value of a floating-point number. More...
|
| |
| double | std::log (double x) |
| | Computes the natural logarithm of a number. More...
|
| |
| double | std::acos (double x) |
| | Computes the arc cosine of a number. More...
|
| |
| double | std::asin (double x) |
| | Computes the arc sine of a number. More...
|
| |
| double | std::atan (double x) |
| | Computes the arc tangent of a number. More...
|
| |
| double | std::atan2 (double y, double x) |
| | Computes the arc tangent of y/x. More...
|
| |
| double | std::cosh (double x) |
| | Computes the hyperbolic cosine of a number. More...
|
| |
| double | std::sinh (double x) |
| | Computes the hyperbolic sine of a number. More...
|
| |
| double | std::tanh (double x) |
| | Computes the hyperbolic tangent of a number. More...
|
| |
| double | std::ceil (double x) |
| | Computes the ceiling of a number. More...
|
| |
| double | std::floor (double x) |
| | Computes the floor of a number. More...
|
| |
| double | std::fmod (double x, double y) |
| | Computes the remainder of the division of two numbers. More...
|
| |
| double | std::cbrt (double x) |
| | Computes the cube root of a number. More...
|
| |
| template<class RandomIt > |
| void | std::shuffle (RandomIt first, RandomIt last) |
| | Shuffles the elements in a range. More...
|
| |
| double | std::acosh (double x) |
| | Computes the hyperbolic arc cosine of a number. More...
|
| |
| double | std::asinh (double x) |
| | Computes the hyperbolic arc sine of a number. More...
|
| |
| double | std::atanh (double x) |
| | Computes the hyperbolic arc tangent of a number. More...
|
| |
| double | std::clamp (double x, double min, double max) |
| | Clamps a value between a minimum and maximum. More...
|
| |
| double | std::max (double a, double b) |
| | Computes the maximum of two numbers. More...
|
| |
| double | std::min (double a, double b) |
| | Computes the minimum of two numbers. More...
|
| |