08-18-2006 03:26 AM
08-18-2006 03:29 AM
08-18-2006 04:45 AM
08-18-2006 04:49 AM
Hm - I did not understand it. Does the whole sequence take 7 or 49us?
By the way - if you want to use a vi in LV8.0, just open it. If you have build-scripts, you have to convert them. There is a menu item "convert build script" in the tools menu.
08-18-2006 06:11 AM
Hi
The whole sequence takes 47us. One frame takes 7us. But only when I use the SEQUENCE. With FOR loop it is much slower. However the core of the frames of the SEQUENCE and the FOR loop are the same.
regards
08-18-2006 06:17 AM
08-18-2006 08:35 AM
08-18-2006 11:10 AM
08-18-2006 11:38 AM
08-18-2006 11:46 AM - edited 08-18-2006 11:46 AM
The seq running faster than the For loop makes a lot of sense to me.
The seq structure tells the compile how to order operations but has not functionality in itself.
The For loop on the other hand does have code associated with the loop to at the very least, decide if should continue.
Ben
BTW: A While Loop is even slower than a For Loop.
Message Edited by Ben on 08-18-2006 11:48 AM