ACOSH

The ACOSH function returns the hyperbolic arccosine of a number.

Syntax

ACOSH(
    <value>
)

Parameters
  • value: Number whose hyperbolic arccosine you want to calculate.
Returned value

The ACOSH function returns a real number.

Additional Information

The argument must be a value greater than or equal to 1.

Hyperbolic functions

Examples

In this example, a calculated column with the hyperbolic arcsine of the values contained in the Value column is added to a table using the following DAX expression:

ACosH = ACOSH(data[Value])
Función ACOSH
Related functions
Category
Mathematical and trigonometric
Submitted by admin on Tue, 12/04/2018 - 12:55