Excerpt |
---|
Computes the arcsine 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 hyperbolic arcsine (ASINH) function is computed using the following formula:

You can convert from degrees to radians. For more information, see RADIANS Function.
Numeric literal example:
D lang syntax |
---|
RawWrangle | true |
---|
Type | ref |
---|
showNote | true |
---|
WrangleText | derive type:single value: round(sinh(radians(30)),3) |
---|
|
round(asinh(0.5),3) |
Output: Returns the computation of the hyperbolic angle in radians whose sine is 0.5
. The output value is rounded to three decimals: 0.481
.
Column reference example:
D lang syntax |
---|
RawWrangle | true |
---|
Type | ref |
---|
showNote | true |
---|
WrangleText | derive type:single value: sinh(X) as: 'sinhX' |
---|
|
asinh(X) |
Output: Returns the hyperbolic angle the sine value for which is stored in radians in X
column.
D lang syntax |
---|
RawWrangle | true |
---|
Type | syntax |
---|
showNote | true |
---|
WrangleText | derive type:single value: sinh(numeric_value) |
---|
|
asinh(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 |
numeric_value
Name of the column, Integer or Decimal literal, or function returning that data type to apply to the function.
- Missing input values generate missing results.
- Literal numeric values should not be quoted. Quoted values are treated as strings.
- Multiple columns and wildcards are not supported.
Required? | Data Type | Example Value |
---|
Yes | String (column reference) or Integer or Decimal literal | 0.5 |
Example - Hyperbolic arc trigonometry functions
Include Page |
---|
| EXAMPLE - Trigonometry Hyperbolic Arc Functions |
---|
| EXAMPLE - Trigonometry Hyperbolic Arc Functions |
---|
|