Ch
This function returns the hyperbolic cosine of a specified number.
ch(EXP_NUM)
EXP_NUM
is an expression that returns a numeric value.RESULT=ch(0.5) : # 1.127626
This function can be calculated by the following formula:
ch(x)=(exp(x)+exp(-x))/2
The type of result is Double.
Error code | Description |
---|---|
10 | The argument is not numeric. |
13 | Calculation overflow (x is too large). |
ach, ash, ath, sh,th, ln, sqr.