COT is a DAX function that returns the cotangent of an angle specified in radians.
Syntax
COT( Number )
Argument | Properties | Description |
---|---|---|
Number | The angle in radians for which you want the cotangent. |
COT is a DAX function that returns the cotangent of an angle specified in radians.
COT( Number )
Argument | Properties | Description |
---|---|---|
Number | The angle in radians for which you want the cotangent. |
The cotangent of the given angle.
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 DAX query,
EVALUATE { COT(30) }
Returns
[Value] |
---|
-0.156119952161659 |
Other functions related to COT are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy