नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Applies to:
Calculated column
Calculated table
Measure
Visual calculation
Returns the hyperbolic cotangent of a hyperbolic angle.
Syntax
COTH (<number>)
Parameters
| Term | Definition |
|---|---|
number |
The hyperbolic angle in radians for which you want the hyperbolic cotangent. |
Return value
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 $2^{27}$ 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:
$$\text{COTH}(N) = \frac{1}{\text{TANH}(N)} = \frac{\text{COSH(N)}}{\text{SINH(N)}} = \frac{e^{N} + e^{-N}}{e^{N} - e^{-N}}$$
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 |