apoc.math.sinh

This function is deprecated. Use Cypher’s sinh() function instead.

Details

Syntax

apoc.math.sinh(value)

Description

Returns the hyperbolic sine of the given value.

Arguments

Name

Type

Description

value

FLOAT

An angle in radians.

Returns

FLOAT

Usage Examples

The following returns the hyperbolic sine of a value:

apoc.math.sinh
RETURN apoc.math.sinh(0.7) AS result;
Cypher’s sinh() function
RETURN sinh(0.7) AS result;
Results
result 0.75858370184