Returns the value of the corresponding hyperbolic trigonometric function value for the argument.
HYP SIN     (argument)
             └──┬───┘ 
       Numeric expression
   
HYP COS     (argument)
             └──┬───┘ 
       Numeric expression
   
HYP TAN     (argument)
             └──┬───┘ 
       Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
HYP SIN(1.5)
argument: Numeric expression
| HYP SIN | argument | ≦ 230.2585092 | 
| HYP COS | argument | ≦ 230.2585092 | 
Returns the value of the corresponding hyperbolic function for the argument.
10  INPUT "INPUT NUMBER (UP TO 230)"; N
20  PRINT "HSN(";N;")=";HYPSIN N
30  PRINT "HCS(";N;")=";HYPCOS N
40  PRINT "HTN(";N;")=";HYPTAN N
50  END
Displays the hyperbolic functions for numeric input up to 230.