C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Math cosh()The function finds the hyperbolic cosine of an angle given in radian. Mathematically,
coshx = ex+ e-x/2
SyntaxSuppose the hyperbolic angle is 'x': float cosh(float x); double cosh(double x); long double cosh(long double x); double cosh(integral x); Parameterx: The value of angle whose hyperbolic cosine is to be calculated. Return valueIt returns the hyperbolic cosine of angle given in radian. Example 1Let's see a simple example when the value of x is of integral type. #include Output: Value of degree is :45 cosh(radian): 1.32426 In this example, cosh() computes the hyperbolic cosine of an angle 45 and returns the value 1.324. Example 2Let's see another simple example. #include Output: Value of degree is: 25.5 cosh(radian): 1.10058
Next TopicC++ Math Functions
|