Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space DEV and version r0811

D toc

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 two slices represent the set of points on a grid such that:

    where k is some constant.

  • The hyperbolic trigonometric functions measure trigonometric calculations for the right-side (x > 0) slice of the hyperbola.
  • For more information, see https://en.wikipedia.org/wiki/Hyperbola.

The hyperbolic arcsine (ASINH) function is computed using the following formula:

You can convert from degrees to radians. For more information, see RADIANS Function.

D s lang vs sql

D s
snippetBasic

Numeric literal example:

D lang syntax
RawWrangletrue
Typeref
showNotetrue
WrangleTextderive 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
RawWrangletrue
Typeref
showNotetrue
WrangleTextderive 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 s
snippetSyntax

D lang syntax
RawWrangletrue
Typesyntax
showNotetrue
WrangleTextderive type:single value: sinh(numeric_value)

asinh(numeric_value)


ArgumentRequired?Data TypeDescription
numeric_valueYstring, decimal, or integerName of column, Decimal or Integer literal, or function returning those types to apply to the function

D s lang notes

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.

D s
snippetusage

Required?Data TypeExample Value
YesString (column reference) or Integer or Decimal literal0.5

D s
snippetExamples

Example - Hyperbolic arc trigonometry functions

Include Page
EXAMPLE - Trigonometry Hyperbolic Arc Functions
EXAMPLE - Trigonometry Hyperbolic Arc Functions

D s also
labeltrigonometry