Mark Wickens

HYP ASN, HYP ACS, HYP ATN

Purpose

Returns the value of the corresponding inverse hyperbolic function value for the argument.

Format

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.

Example

HYP ASN(10)

Parameters

argument: Numeric expression

Explanation

Returns the value of the corresponding inverse hyperbolic function for the argument.

See

Sample Program

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.