1 @node Conditionals and Looping, Statistics, Data Selection, Top
2 @chapter Conditional and Looping Constructs
5 @cindex flow of control
8 This chapter documents PSPP commands used for conditional execution,
9 looping, and flow of control.
12 * BREAK:: Exit a loop.
13 * DO IF:: Conditionally execute a block of code.
14 * DO REPEAT:: Textually repeat a code block.
15 * LOOP:: Repeat a block of code.
18 @node BREAK, DO IF, Conditionals and Looping, Conditionals and Looping
26 @cmd{BREAK} terminates execution of the innermost currently executing
29 @cmd{BREAK} is allowed only inside @cmd{LOOP}@dots{}@cmd{END LOOP}.
30 @xref{LOOP}, for more details.
32 @node DO IF, DO REPEAT, BREAK, Conditionals and Looping
47 @cmd{DO IF} allows one of several sets of transformations to be
48 executed, depending on user-specified conditions.
50 If the specified boolean expression evaluates as true, then the block
51 of code following @cmd{DO IF} is executed. If it evaluates as
53 none of the code blocks is executed. If it is false, then
54 the boolean expression on the first @cmd{ELSE IF}, if present, is tested in
55 turn, with the same rules applied. If all expressions evaluate to
56 false, then the @cmd{ELSE} code block is executed, if it is present.
58 When @cmd{DO IF} or @cmd{ELSE IF} is specified following @cmd{TEMPORARY}
59 (@pxref{TEMPORARY}), the @cmd{LAG} function may not be used
62 @node DO REPEAT, LOOP, DO IF, Conditionals and Looping
67 DO REPEAT repvar_name=expansion@dots{}.
71 expansion takes one of the following forms:
76 num_or_range takes one of the following forms:
81 @cmd{DO REPEAT} repeats a block of code, textually substituting
82 different variables, numbers, or strings into the block with each
85 Specify a repeat variable name followed by an equals sign (@samp{=}) and
86 the list of replacements. Replacements can be a list of variables
87 (which may be existing variables or new variables or a combination
88 thereof), of numbers, or of strings. When new variable names are
89 specified, @cmd{DO REPEAT} creates them as numeric variables. When numbers
90 are specified, runs of integers may be indicated with TO notation, for
91 instance @samp{1 TO 5} and @samp{1 2 3 4 5} would be equivalent. There
92 is no equivalent notation for string values.
94 Multiple repeat variables can be specified. When this is done, each
95 variable must have the same number of replacements.
97 The code within @cmd{DO REPEAT} is repeated as many times as there are
98 replacements for each variable. The first time, the first value for
99 each repeat variable is substituted; the second time, the second value
100 for each repeat variable is substituted; and so on.
102 Repeat variable substitutions work like macros. They take place
103 anywhere in a line that the repeat variable name occurs as a token,
104 including command and subcommand names. For this reason it is not a
105 good idea to select words commonly used in command and subcommand names
106 as repeat variable identifiers.
108 If PRINT is specified on @cmd{END REPEAT}, the commands after substitutions
109 are made are printed to the listing file, prefixed by a plus sign
112 @node LOOP, , DO REPEAT, Conditionals and Looping
117 LOOP [index_var=start TO end [BY incr]] [IF condition].
119 END LOOP [IF condition].
122 @cmd{LOOP} iterates a group of commands. A number of
123 termination options are offered.
125 Specify index_var to make that variable count from one value to
126 another by a particular increment. index_var must be a pre-existing
127 numeric variable. start, end, and incr are numeric expressions
128 (@pxref{Expressions}.)
130 During the first iteration, index_var is set to the value of start.
131 During each successive iteration, index_var is increased by the value of
132 incr. If end > start, then the loop terminates when index_var > end;
133 otherwise it terminates when index_var < end. If incr is not specified
134 then it defaults to +1 or -1 as appropriate.
136 If end > start and incr < 0, or if end < start and incr > 0, then the
137 loop is never executed. index_var is nevertheless set to the value of
140 Modifying index_var within the loop is allowed, but it has no effect on
141 the value of index_var in the next iteration.
143 Specify a boolean expression for the condition on @cmd{LOOP} to
144 cause the loop to be executed only if the condition is true. If the
145 condition is false or missing before the loop contents are executed the
146 first time, the loop contents are not executed at all.
148 If index and condition clauses are both present on @cmd{LOOP}, the index
149 clause is always evaluated first.
151 Specify a boolean expression for the condition on @cmd{END LOOP} to cause
152 the loop to terminate if the condition is not true after the enclosed
153 code block is executed. The condition is evaluated at the end of the
154 loop, not at the beginning.
156 If the index clause and both condition clauses are not present, then the
157 loop is executed MXLOOPS (@pxref{SET}) times.
159 @cmd{BREAK} also terminates @cmd{LOOP} execution (@pxref{BREAK}).
161 When @cmd{LOOP} or @cmd{END LOOP} is specified following @cmd{TEMPORARY}
162 (@pxref{TEMPORARY}), the @cmd{LAG} function may not be used