Programming
Techniques
13–17
File name 33s-English-Manual-040130-Publication(Edition 2).doc Page : 388
Printed Date : 2004/1/30 Size : 13.7 x 21.2 cm
This routine (taken from the "Coordinate Transformations" program on page
15–32 in chapter 15) is an example of an
infinite loop
. It is used to collect the
initial data prior to the coordinate transformation. After entering the three values, it
is up to the user to manually interrupt this loop by selecting the transformation to be
performed (pressing
t
N for the old–to–new system or
t
O for the
new–to–old system).
Conditional Loops (GTO)
When you want to perform an operation until a certain condition is met, but you
don't know how many times the loop needs to repeat itself, you can create a loop
with a conditional test and a GTO instruction.
For example, the following routine uses a loop to diminish a value A by a constant
amount
B
until the resulting
A
is less than or equal to
B
.
Program lines:
(In RPN mode)
Description:
Checksum and length: D548 9
It is easier to recall
A
than to remember where it is in the
stack.
Calculates
A
–
B
.
Replaces old A with new result.
Recalls constant for comparison.
Is
B
<
new
A
?
Yes: loops to repeat subtraction.
No: displays new
A
.
Checksum and length: AC36 27
Summary of Contents for 33S
Page 14: ......
Page 15: ...Part 1 Basic Operation ...
Page 16: ......
Page 56: ......
Page 64: ......
Page 82: ......
Page 92: ......
Page 122: ......
Page 138: ......
Page 157: ...Part 2 Programming ...
Page 158: ......
Page 184: ......
Page 210: ......
Page 222: ......
Page 293: ...Part 3 Appendixes and Reference ...
Page 294: ......
Page 324: ......
Page 348: ......