Appendix A: Function and Instruction Reference 303
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 303 of 36
remainder(dividend,divisor)
remainder(list,divisor)
remainder(dividend,list)
remainder(list,list)
1NUM
Returns the remainder resulting from the division of
two positive whole numbers, dividend and divisor,
each of which can be a list.
If both arguments are lists, they must have the same
number of elements. If one argument is a list and the
other a non-list, the non-list is paired with each
element of the list, and a list is returned.
remainder(10,4)
b2
{5,5,5,5,5}ÜL1 b
{5 5 5 5 5}
{1,2,3,4,5}ÜL2 b
{1 2 3 4 5}
remainder(L
1,L2) b
{0 1 2 1 0}
:Repeat condition
:block
:End
:command
8CTL
Programming command; executes block until
condition is true.
PROGRAM:REPEAT
:0ÜI:0ÜJ
:Repeat I
6
: I+1ÜI:J+1ÜJ
:Disp "J=",J
:Pause
:End
Return
8CTL
Programming command; returns to the calling
program.
PROGRAM:AREA
:D/2ÜR
:p¦RÜA
:Return
PROGRAM:RETURN
:Input "DIAMETER=",D
:Input "HEIGHT=",H
:prgmAREA
:A¦HÜV
:Disp "VOLUME=",V
round(value[,#decimal_places])
1NUM
Returns a number, expression, or each element in a
list rounded to 10 digits or #decimal_places (9), if
specified.
In Float mode:
round(
p,4) b3.1416
round(
p) b
3.141592654
Scatter
See Plot1: Scatter Plot
Sci
.
Selects the Sci Numeric Notation mode setting.
Displays results in scientific notation.
123 b1.23©2