std::cosh(std::valarray) (3) - Linux Manuals
std::cosh(std::valarray): std::cosh(std::valarray)
NAME
std::cosh(std::valarray) - std::cosh(std::valarray)
Synopsis
Defined in header <valarray>
template< class T >
valarray<T> cosh( const valarray<T>& va );
For each element in va computes hyperbolic cosine of the value of the element.
Parameters
va - value array to apply the operation to
Return value
Value array containing hyperbolic cosine of the values in va.
Notes
Unqualified function (cosh) is used to perform the computation. If such function is not available, std::cosh is used due to argument dependent lookup.
The function can be implemented with the return type different from std::valarray. In this case, the replacement type has the following properties:
Possible implementation
Example
This section is incomplete
Reason: no example
See also
sinh(std::valarray) (function template)
tanh(std::valarray) (function template)
cosh
coshf
coshl computes hyperbolic cosine (ch(x))
(C++11)
(C++11)
cosh(std::complex) (function template)