10-09-2006 03:36 PM
I have a data set I am reading into an array, performing computations on that data to create a second array, and then putting the data through a Butterworth filter to create a third array.
When I perform the operation on 50K data points the operation takes approx 15 seconds to complete with no issues. When I bump the resolution up to 500K, the operation completed but takes 30 min or so. When I bump the resolution up to 50M data points (where I need to be), I get an error “Not Enough Resources” and Lab View crashes all together. The crash happens during the building of the first array.
So, my question is two part,
1: How can I address the apparent memory management issue Lab View seems to be experiencing on large data sets?
2: How can I improve performance?
I chopped out the relevant parts of the VI and screenshotted them. Image is attached.
Any help will be appreciated.
10-09-2006 04:03 PM
local variables are a copy of the data. Also try to get rid of the build array.
10-09-2006 06:16 PM
10-09-2006 08:33 PM