290 Appendix A: Function and Instruction Reference
99APPX-A.DOC AppxA: Function/Instruction Reference, English Julie Hewlett Revised: 07/29/98 1:10 PM
Printed: 02/07/01 11:23 AM Page 290 of 36
FnOff [1,2,3,4]
FnOn [1,2,3,4]
-}2:Y-Vars
Turns off (deselects) or on (selects) all Yn functions
or specified Yn functions (Y1, Y2, Y3, or Y4).
FnOff 1,3 bDone
FnOn 2 bDone
:For(variable,begin,end,[increment])
:block (while variable end)
:End
:command
8CTL
Programming command; executes commands in block
through end, increasing variable from begin by
increment until variable>end.
PROGRAM:FOR
:For(A,0,8,2)
:Disp A2
:Pause
:End
fPart(value)
1NUM
Returns the fractional part of a real number,
expression, or each element in a list.
fPart(23.45)b.45
fPart(L17.26¦8) bL.08
fPart({1.2,3.4,5.6}) b
{.2 .4 .6}
fPart(11
2)1
2
gcd(valueA,valueB)
1MATH
Returns the greatest common divisor (the largest
number that can divide into the two values evenly), of
two positive whole numbers or lists of positive whole
numbers.
gcd(27,36) b9
27
36 4Simp 9 b3
4
Get(variable)
8I/O –or– -|
Gets data from a CBR or CBL 2/CBL System and stores
it in variable.
PROGRAM:GETSOUND
:Send ({3,.00025,99,1,0,0,0,0,
13})
:Get(L1)
:Get(L2)
GetCalc(variable)
8I/O or-|
Gets contents of variable from another TIN73 and
stores it to variable on the receiving TIN73.
PROGRAM:GETCALC
:GetCalc(L1)
:GetCalc(Y1)
:GetCalc(Pic1)
getKey
8I/O
Programming command; returns the key code for the
current keystroke. See Chapter 12: Programming for
the Key Code Diagram displayed with the GetKey
explanation.
PROGRAM:GETKEY
:Lbl A
:0"K
:While K=0
:getKey"K
:End
:Disp K
:If Kƒ45
:Goto A