CSCH

The CSCH function returns the hyperbolic cosecant of a number.

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

Declaration

CSCH(number) -> hyperbolic_cosecant

Parameters

number (required, type: Number)

The number to calculate the hyperbolic cosecant of.

Return Values

hyperbolic_cosecant (type: Number)

The hyperbolic cosecant of the given number.

Examples

The following example returns the hyperbolic cosecant of 1:

CSCH(1) -> 0.8509181282393216

Last updated