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