std::cosh

From cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Exponential functions
(C++11)
(C++11)
(C++11)
(C++11)
Power functions
(C++11)
(C++11)
Trigonometric and hyperbolic functions
cosh
(C++11)
(C++11)
(C++11)
Error and gamma functions
(C++11)
(C++11)
(C++11)
(C++11)
Nearest integer floating point operations
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Floating point manipulation functions
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classification/Comparison
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Macro constants
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Defined in header <cmath>
float       cosh( float arg );
double      cosh( double arg );
long double cosh( long double arg );
double      cosh( Integral arg );
(since C++11)

Computes hyperbolic cosine of arg

[edit] Parameters

arg - value of a floating-point or Integral type

[edit] Return value

Hyperbolic cosine of arg.

[edit] See also

computes hyperbolic sine (sh(x))
(function)
hyperbolic tangent
(function)
(C++11)
area hyperbolic cosine
(function)
computes hyperbolic cosine of a complex number (ch(z))
(function template)
applies the function std::cosh to each element of valarray
(function template)
C documentation for cosh