ACOT
The ACOT function returns the arccotangent of a number.
This function takes a single Number as input. It outputs that Number's inverse cotangent in radians.
Declaration
Parameters
number (required, type: Number) The number to calculate the arccotangent of.
Return Values
arccotangent (type: number) The arccotangent of the given number, in radians.
Examples
The following example returns the arccotangent of 0.5. This is given as a numerical estimation of the angle in radians:
To calculate the arctangent in degrees, the ACIT function must be used in tandem with the DEGREES function, such as in the following example:
Last updated