文法:
#include <cmath>
double cosh( double 引数 );
cosh()関数は、引数に対する、ハイパーボリックコサインを計算して返します。
C++では、以下のオーバーロード版も提供されます:
#include <cmath>
float cosh( float 引数 ); // C99のcoshf()と同じです
long double cosh( long double 引数 ); // C99のcoshl()と同じです
関連トピック: acos, asin, atan, atan2, cos, sin, sinh, tan, tanh