Click or drag to resize

ACot Function

X#
Calculate the arc cotangent of a number.

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION ACot(
	nNum AS USUAL
) AS FLOAT
Request Example View Source

Parameters

nNum
Type: Usual
Any numeric value.

Return Value

Type: Float
A number between -PI/2 and PI/2, representing the angle, in radians, whose cotangent is equal to nNum.
Remarks
Examples
This examples uses ACot() to find the angle whose cotangent is 20:
X#
1? ACot(20)            // .05 radians
See Also