Computes the arccosine of an input value for a hyperbolic angle measured in radians. The value can be a Decimal or Integer literal or a reference to a column containing numeric values. |
A hyperbola is the shape created by taking a planar slice of two cones whose tips are touching each other. For two identical cones, the curves of the slices mirror each other, no matter the angle of the plane through the cones.
The two slices represent the set of points on a grid such that:
where k
is some constant.
The hyperbolic arccosine (ACOSH) function is computed using the following formula:
You can convert from degrees to radians. For more information, see RADIANS Function.
Numeric literal example:
round(degrees(acosh(1.5)), 2) |
Output: Returns the computation of the hyperbolic angle in degrees whose cosine is 1.5
. The output value is rounded to two decimals: 55.14
.
Column reference example:
acosh(X) |
Output: Returns the hyperbolic angle the cosine value for which is stored in radians in X
column.
acosh(numeric_value) |
Argument | Required? | Data Type | Description |
---|---|---|---|
numeric_value | Y | string, decimal, or integer | Name of column, Decimal or Integer literal, or function returning those types to apply to the function |
Name of the column, Integer or Decimal literal, or function returning that data type to apply to the function.
Required? | Data Type | Example Value |
---|---|---|
Yes | String (column reference) or Integer or Decimal literal | 0.5 |