$tanh (aggregation)
$tanhNew in version 4.2.
Returns the hyperbolic tangent of a value that is measured in radians.
$tanhhas the following syntax:{ $tanh: <expression> }$tanhtakes any valid expression that resolves to a number, measured in radians. If the expression returns a value in degrees, use the$degreesToRadiansoperator to convert the value to radians.By default
$tanhreturns values as adouble.$tanhcan also return values as a 128-bit decimal if the<expression>resolves to a 128-bit decimal value.For more information on expressions, see Expressions.
Behavior
null, NaN, and +/- Infinity
If the input argument resolves to a value of null or refers to a field that is missing, $tanh returns null. If the argument resolves to NaN, $tanh returns NaN. If the argument resolves to negative or positive Infinity, $tanh returns -1 or 1 respectively.
| Example | Results |
|---|---|
{ $tanh: NaN } | NaN |
{ $tanh: null } | null |
{ $tanh: -Infinity } | -1 |
{ $tanh: Infinity } | 1 |