asech ( x -- y )
Factor documentation > Factor handbook > The language > Numbers > Mathematical functions > Trigonometric and hyperbolic functions
Prev:atanh ( x -- y )
Next:acosech ( x -- y )


Vocabulary
math.functions

Inputs and outputs
xa number
ya number


Word description
Inverse hyperbolic secant.

Definition
USING: math ;

IN: math.functions

: asech ( x -- y ) recip acosh ; inline