TANH
This page describes the TANH function in Lenses SQL.
TANH(numExpr)
Returns the hyperbolic tangent of an expression.
Available in:
Processors
SQL Studio
✓
✓
Sample code:
USE `kafka`;
SELECT
TANH(integer),
integer
FROM numbers-data
LIMIT 1;
Output:
{
"value": {
"TANH": 1,
"float": 95.95
}
}
Last updated
Was this helpful?