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++ Language Reference - cosh http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   cosh

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

   Description
   Calculates the hyperbolic cosine of x.

   Example
   #include <math.h>
   #include <stdio.h>
   main()
   {
   double value = 2.5556, hycos;
        hycos = cosh(value);
        printf("The hyperbolic cosine of %f is %f\n",value,hycos);
   }

   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

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