apoc.math.csch

Details

Syntax

apoc.math.csch(value)

Description

Returns the hyperbolic cosecant.

Arguments

Name

Type

Description

value

FLOAT

An angle in radians.

Returns

FLOAT

Usage Examples

The following returns the hyperbolic cosecant of a value:

apoc.math.csch
RETURN apoc.math.csch(0.7) AS result;
Cypher’s sinh() function
RETURN 1 / sinh(0.7) AS result; // As csch(x) = 1 / sinh(x)
Results
result 1.318246091466297