Free functions
| cosh | Calculates the hyperbolic cosine: (e^x + e^-x) / 2… |
| sinh | Calculates the hyperbolic sine: (e^x - e^-x) / 2… |
| tanh | Calculates the hyperbolic tangent: sinh(x) / cosh(x)… |
| acosh | Calculates the inverse hyperbolic cosine: ln(x + sqrt(x² - 1))… |
| asinh | Calculates the inverse hyperbolic sine: ln(x + sqrt(x² + 1))… |
| atanh | Calculates the inverse hyperbolic tangent: ln((1 + x) / (1 - x)) / 2… |