02-27-2004 04:05 PM
02-27-2004 04:12 PM
02-28-2004
09:27 AM
- last edited on
12-12-2024
11:14 AM
by
Content Cleaner
Hi UHB,
I believe the most correct answer is DON'T!
Check out the solutions to past LV code challenges at http://www.ni.com/devzone/lvzone/codingchallengearchive.htm.
Also check out Dr. VI's articles about moving data.
Summarized.
Moving large amounts of data takes a long time! It should be avoided wherever possible. This can be done by acting on data in place. When you collect the data, put directly into the object or objects that will be using that data. That way the data gets moved once. From that time forward, you perform in place operations.
So...
If you want to go faster, do less along the way.
Ben
Ben Rayn
er
Certified LabVIEW Developer
www.DSAutomation.com
02-28-2004 11:08 AM
03-01-2004 02:23 AM