Hi all,
I have a very large 2D data set that I am trying to load into LabVIEW... The file is in tdms format... Previously, I was reading the data in with chunks of 20,000 x 7 elements and was building an array each iteration until the EOF in an attempt to reduce the memory hit... However, this really this did not work as I was using less memory when reading the whole file into to memory as once... So the using the "build array" vi is very inefficient int terms of memory usage (as all the doc say)...
So, instead of building an array I would like the preallocate a memory to an array of filled with "0's" then replace an array subset on each iteration with the 20,000 x 7 element chunk... This sounds simple enough, but I cannot get this to work...
Could some please post some example code for this?
Thanks,
Jack