Appendix a: function and instruction reference – Texas Instruments TI-73 EXPLORER User Manual
Page 294
288
Appendix A: Function and Instruction Reference
73A-ENG.DOC AppxA: Function/Instruction Reference, English Julie Hewlett Revised: 07/29/98 1:10 PM Printed:
05/19/99 9:03 AM Page 288 of 36
DispTable
8
I / O
Programming command (display table); displays the
table for all defined and selected
Y
n
functions during
program execution.
PROGRAM:TABLE
:"2X+5"ÜY
:IndpntAuto
:DependAuto
:DispTable
angle8
DMS
- u
A N G L E
Converts an angle to DMS (degrees¡ minutes'
seconds") notation. Results are determined by the
Angle mode setting (
Radian
or
Degree
).
In Degree or Radian mode:
50¡8DMS b
50¡0'0"
In Radian mode:
50 8DMS b
2864¡47'20.312"
:
DS<(
variable,value
)
:command1 (if answer | value)
:command2
8
C T L
Programming command (decrement and skip if less
than); subtracts 1 from variable. If the answer is <
value, then command1 is skipped; if the answer is |
value, then command1 is executed. command2 is
always executed.
PROGRAM:DS
:9ÜA
:Lbl S
:Disp A
:DS<(A,5)
:Goto S
:Disp "A IS NOW <5"
:Pause
e^(
x
)
1
L O G
Raises e to a power of x, where x is a real number, an
expression that results in an real number, or a list of
real numbers. e equals 2.71828182846.
e^(2.5) b
12.18249396
value © exponent
- {
Enters a number in scientific notation. The display of
the result depends upon the Numeric mode setting
(
Normal
or
Sci
). value can be a real number or list.
In Normal Numeric mode:
12.3456789
©
5 b 1234567.89
(1.78/2.34)
©
2 b
76.06837607
{6.34,854.6}
©
3 b
{6340 854600}
Else
See
If
:
Then
:
Else
:
End
End
8
C T L
Programming command; you must include an
End
instruction at the end of each
For(, While
, or
Repeat
loop. Also, you must enter an
End
instruction at the
end of each
If–Then
group and each
If–Then–Else
group.