06-15-2006 02:48 PM - edited 06-15-2006 02:48 PM
Message Edited by gatordan82 on 06-15-2006 02:49 PM
06-15-2006 05:20 PM
can you attach examples of a data file. Doesn't have to be actual data but something correctly structure with realistic values.
06-15-2006 07:29 PM - edited 06-15-2006 07:29 PM
Hi gatordan82,
At first
I don’t see any differences between the Vis. ?
Then, you always cut on the original data, read from the file. If you want to keep the parts cutted, you should pass the data (the arrays) through shift registers to the while loop. Btw, the shift registers in the for- loop are unnecessary since the loop is executed only once; but they don’t affect the algorithm.
To pass the array into Shift registers, there is a very nice feature (I hope this is available in 7.0 too, I only have 7.1) to replace the input terminal of the while loop with a shift register:
Right- click on the input- terminal and choose “replace with shift register”, then follow the steps shown below. Very cool!
And the third thing I noticed was, all three “delete from array”- nodes in the for- loop get the same index- and length values, you only have to calculate them once.
I hope, this brings you closer to your solution,
Greets, Dave
Message Edited by daveTW on 06-16-2006 02:30 AM
06-16-2006 03:01 AM
06-16-2006 02:26 PM