<LC> is a logical comparator. The following comparators
are allowed:
EQ or == Equal
NE Not equal
GT or > Greater
GE or >= Greater/equal
LT or < Less
LE or <= Less/equal
EXAMPLE:
DO [iter]=1,100
~~~~~~~
~~~~~~~
CYCLE
; NEVER USED
; NEVER USED
ENDDO
MORE MEANINGFULL EXAMPLE:
DO [iter]=1,9999
IQ FI [exists]
input{****[iter]
IF ([exists] == 1) CYCLE
AC
input{****[iter]
output{****[iter]
ENDDO
NOTES
Prior to SPIDER release 15.0, 'DO' loops were terminated with
a label operation 'LB'.
This label had to be specifed when
invoking the loop. This earlier syntax is often found in
SPIDER procedures and is still supported but is
now deprecated. Example: