302 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 302 of 36
pxl-Test(row,column)
2POINTS
Returns 1 if pixel at (row, column) is on; returns 0 if it
is off; 0row62, and 0column94.
Pxl-On(10,75)
b
Done
pxl-Test(10,75)
b1
QuadReg [XList,YList,freq,Y]
-vCALC
Fits the second-degree polynomial (y=ax +bx+c) to
XList and YList with frequency list, freq, and stores
the regression equation to Y. XList, YList, and freq
(if specified) must have the same number of elements.
freq is the frequency of occurrence for each
corresponding data point in XList. If freq is omitted,
all values are used once.
Defaults for XList and YList are L1 and L2.
Decimal mode set to 2:
{1,3,4,5,5,7,8,9}
ÜL3 bDone
{1,4,2,3,4,6,7,9}
ÜL4 bDone
QuadReg L
3,L4,Y b
Select ZStandard.
Radian
.
Sets the Radian Angle mode setting. Interprets angles
as radians.
In Radian mode:
sin(90)
b.893996663
6
sin(2) b1
rand
seed Xrand
1PRB
Generates a random number between 0 and 1. By
storing an integer seed value (default=0) to rand, you
can control a random number sequence.
0Ürand
b0
rand
b.943597402
5
rand
b.908318861
1Ürand
b1
rand
b.745560772
8
rand
b.8559005971
randInt(lower,upper[,#ofIntegers])
1PRB
Generates a random integer between lower and upper
(both integers) boundaries. To generate more than
one random integer, specify #ofIntegers, a positive
whole number>0.
(Results may vary.)
randInt(1,10)
b3
randInt(1,10,3)
b
{3 5 7}
RecallPic number
2STO
Displays the current graph and superimposes
Picnumber on it. number can be 1 (Pic1), 2 (Pic2), or
3 (Pic3).
Line(0,0,6,6)
b
StorePic 2
bDone
RecallPic 2
b
(Pic2 displayed
)