02-02-2012 03:00 PM
Hmm...
That is definitely not what you described in your original post.
Try this.
02-02-2012 04:13 PM
Thanks. I am trying to understand how your model works (why is the shift register needed etc?)
02-02-2012 04:57 PM
The shift register holds the output array as it is getting built up. It starts with an empty array. On each loop, it checks to see if the element is the same as the previous. If the element is the same, nothing is done; the Select function simply transfers the old array unmodified to the next iteration.
If the element is not the same, the new element (and index) are concatenated to the array and the appended array is transferred to the next iteration.
02-03-2012 02:52 PM
I also tried to udnerstand why the "auto index tunnel" is used (I didn't find this term in "Detailed Help" window). Thanks.
02-03-2012 02:58 PM
Following my previous question on "Auto Index Tunnel". Does it use to excute the for loop according to the size of the array?