C++ Math cos() The function is used to find the cosine of an angle expressed in terms of radian. Syntax Consider a…
ldexp()
-
-
C++ Vector hypot() This function finds the square root of the sum of the squares of two numbers. It stands for hypotenuse,…
-
C++ Math log10() The function computes the common algorithm (base 10) of a given number. Mathematically: Suppose a number is ‘x’: log10x…
-
C++ Math cosh() The function finds the hyperbolic cosine of an angle given in radian. Mathematically, coshx = ex+ e-x/2 Syntax Suppose…
-
C++ Math ilogb() The function returns the exponent part of a given number i.e integral part of logx. ilogb() function is equivalent…
-
C++ Math log1p() The function computes the natural logarithm of a given number plus one. Suppose a number is ‘x’: log1p(x) =…
-
C++ Math isfinite() The function determines the value whether it is finite or not. It should not be NaN or infinite value.…
-
C++ Math log2() The function computes the base 2 logarithm of a given number. Suppose a number is ‘x’: log2(x) = log2x;…
-
C++ Math erfc() The erfc() function computes the complementary error function value of a parameter passed to the function. Suppose a number…
-
C++ Math isgreater() The isgreater() function determines whether the value of first argument given in function is greater than the value of…