acot ( x -- y )
Factor documentation > Factor handbook > The language > Numbers > Mathematical functions > Trigonometric and hyperbolic functions
Prev:acosec ( x -- y )
Next:cosh ( x -- y )


Vocabulary
math.functions

Inputs and outputs
xa number
ya number


Word description
Inverse trigonometric cotangent.

Definition
USING: math ;

IN: math.functions

: acot ( x -- y ) recip atan ; inline