COT
Calculates the cotangent, using the specified angle in radians.
Cotangent is the reciprocal of tangent, equal to 1 / TAN(angle). Returns #ERROR! for 0.
Syntax
=COT(angle)
Arguments
Argument | Type | Description |
---|---|---|
angle | Number | The angle in radians |
Examples
=COT(PI / 4)
→1
Calculates the cotangent of PI / 4
=COT(0)
→#ERROR!
Calculates the cotangent of 0
=COT(@"Property 1")
→1.93077226998301700942
Calculates the cotangent of the shape data property @"Property 1" (123)
Updated 7 months ago