Docs Data Platform Cloud Reference Redpanda SQL Reference Functions Math cosh Cloud Page options Copy as Markdown Copied! View as plain text Ask AI about this topic Add MCP server to VS Code cosh The cosh() function returns the hyperbolic cosine of a specified numeric argument. Syntax COSH(x) Arguments x: A positive or negative number of type real or double precision. Return type Same as the input type (real or double precision). Examples Positive value SELECT COSH(1); cosh -------------------- 1.5430806348152437 (1 row) Zero SELECT COSH(0); cosh ------ 1 (1 row) Negative value cosh is symmetric, so COSH(-x) returns the same result as COSH(x): SELECT COSH(-1); cosh -------------------- 1.5430806348152437 (1 row) Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution 🎉 Thanks for your feedback! ceil exp