apoc.math.cosh

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

Details

Syntax

apoc.math.cosh(value)

Description

Returns the hyperbolic cosine.

Arguments

Name

Type

Description

value

FLOAT

An angle in radians.

Returns

FLOAT

Usage Examples

The following returns the hyperbolic cosine of a value:

apoc.math.cosh
RETURN apoc.math.cosh(0.7) AS result;
Cypher’s cosh() function
RETURN cosh(0.7) AS result;
Results
result 1.255169005630943