Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>cosh</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
cosh

Usage

   #include <math.h>
   double cosh(double x);

   ANSI

Description

   Calculates the hyperbolic cosine of x.

Example 

   #include <math.h>
   #include <stdio.h>
   #include <stdlib.h>


   int main()
   {
       double value = 2.5556, hycos;
       hycos = cosh(value);
       printf("Hyperbolic cosine of %f = %f\n",value,hycos);
       return EXIT_SUCCESS;
   }

Return Value

   cosh returns the hyperbolic cosine of x. HUGE_VAL is returned on
   overflow, 0 on any other error and errno is set. Error handling can be
   modified with matherr.

See Also

   acos, asin, atan, atan2, acos, matherr, sin, sinh, tan, tanh



See Also: acos asin atan atan2 acos matherr sin sinh tan tanh

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson