Hi All, I seem to have a hit a logic block... not sure why. Let's say I have the following array,
0 0 0 0 0 0 0 0 4 0 0 0 0 0 Now, lets say when I see the number 4, I want to change the value in another array 4 elements back (yes, the number relates to the number of elements back I want to change in another array)... So, the other array goes from all zeros, to... 0 0 0 0 1 0 0 0 0 0 0 0 0 0 I realize I can do this with looping... is there a simple way to do with AFL...? (i.e. not looping) TIA
