Re: Jumping to inner loops

2006-10-24 Thread Rob Dixon
Luba Pardo wrote: > Dear all: > I need to write a script that, given that a statement in the "OUTER" > loop is > true goes immediately to the INNER loop and finishes it before iterates in > OUTER again. > The problem is that I do not how to ask the program to run the inner loop > once the statemen

RE: Jumping to inner loops

2006-10-24 Thread Charles K. Clarkson
Luba Pardo wrote: : Example: once that the element h=0 from arra1 is found in : array2, then move to the inner loop for h to become h+2 : and not h+4. Then when the 4 consecutive elements in the : array 1are found in the array 2, then make h= h+4 in the : array1. Element

Jumping to inner loops

2006-10-24 Thread Luba Pardo
Dear all: I need to write a script that, given that a statement in the "OUTER" loop is true goes immediatly to the INNER loop and finishes it before iterates in OUTER again. The problem is that I do not how to ask the program to run the inner loop once the statement of the loop "OUTER" is true. E