COTH

Updated on

COTH is a DAX function that returns the hyperbolic cotangent of a hyperbolic angle.

Syntax

COTH( Number )
Argument Properties Description
Number Any real number.

Return Values

The hyperbolic cotangent of the given angle.

Remarks

  • The hyperbolic cotangent is an analog of the ordinary (circular) cotangent.

  • The absolute value of number must be less than 227 and cannot be 0.

  • If number is outside its constraints, an error is returned

  • If number is a non-numeric value, an error is returned.

  • The following equation is used:

    COTH(N)=1TANH(N)=COSH(N)SINH(N)=eN+eNeNeN

  • This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Example

The following DAX query,

EVALUATE { COTH(2) }

Returns

[Value]
1.03731472072755

Other functions related to COTH are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/coth-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy