Returns the value of the corresponding inverse trigonometric function value for the argument.
ASN (argument)
└──┬───┘
Numeric expression
ACS (argument)
└──┬───┘
Numeric expression
ATN (argument)
└──┬───┘
Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
ASN(0,1)
argument: Numeric expression in the range if -1 ≦ argument ≦ 1 (ASN, ACS)
ASN
: ARCSINEACS
: ARCCOSINEATN
: ARCTANGENT10 ANGLE 1
20 INPUT "INPUT NUMBER (-1 TO 1)="; N
30 PRINT N; "=SIN("; ASN N; "RAD)"
40 PRINT N; "=COS("; ACS N; "RAD)"
50 PRINT N; "=TAN("; ATN N; "RAD)"
60 ANGLE 0: END
Displays trigonometric angles in radians for each input in range of -1 to 1.