COTH

The COTH function returns the hyperbolic cotangent of a number.

This function takes a single Number as input. It outputs that Number's hyperbolic cotangent.

Declaration

COTH(number) -> hyperbolic_cotangent

Parameters

number (required, type: Number)

The number to calculate the hyperbolic cotangent of.

Return Values

hyperbolic_cotangent (type: Number) T

he hyperbolic cotangent of the given number.

Examples

The following example returns the hyperbolic cotangent of 1:

COTH(1) -> 1.3130352854993319

Last updated