What are Mathematical Functions in C++?
Name | Description |
acos | Returns the arc cosine value. |
atan | Returns the arc tangent value. |
cos | Returns the cosine value. |
cosh | Returns the hyperolic cosine value. |
atan2 | Returns the arc tangent of y/x. |
ceil | Returns the smallest integer not less than the given value. |
exp | Returns the natural logarithm base "e" raised to the argument value. |
fabs | Returns the absolute value of the num. |
floor | Returns the largest Integer not greater than the given value. |
fmod | Returns the remainder of two values. |
frexp | Converts a number into a mantissa between the range .5 to less than 1. |
ldexp | Returns the value of the number * 2 to the power of "exp" |
log | Returns the natural algorithm for the given value. |
log10 | Returns the base 10 algorithm for a number. |
modf | Segregates the number into its integer and fractional parts. |
pow | Returns the exponential value. |
sin() | Return the sine value for the argument. |
sinh()sinh | Return the hyperbolic sine value for the argument. |
sqrt() | Returns the square root of the argument. |
tanh() | Return the hyperbolic tangent value for the argument. |
tan() | Return the tangent value for the argument. |