Returns the value of the corresponding inverse hyperbolic function value for the argument.
HYP ASN     (argument)
             └──┬───┘ 
       Numeric expression
   
HYP ACS     (argument)
             └──┬───┘ 
       Numeric expression
   
HYP ATN     (argument)
             └──┬───┘ 
       Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
HYP ASN(10)
argument: Numeric expression
| HYP ASN: | argument | < 5 × 10⁹⁹ (5E+99) | 
Returns the value of the corresponding inverse hyperbolic function for the argument.
10  INPUT "INPUT NUMBER (1 OR GREATER)"; N
20  PRINT "HAS(";N;")="; HYPASN N
30  PRINT "HAC(";N;")="; HYPACS N
40  END
Displays inverse hyperbolic function value for numeric input of 1 or greater.