05-17-2006 04:09 PM
05-18-2006 12:39 AM
05-18-2006 07:56 AM
Can you do the analysis piecemeal? If you could break off a chunk and process that, then another chunk and process that, and at the end process all the chunk results together, then you could avoid having to convert the whole bloody thing at one time.
You could duplicate the analysis code and have an SGL version and an I16 version.
If the SGL array does NOT cause memory exhaustion, then maybe you could do the I16-->SGL CONVERSION piecemeal.
Are you using a system library in the analysis? Most of those are DBL, if you're trying to save space by using SGL, you may be hurting yourself (because it has to convert to DBL somewhere inside).
If you can convert to SGL (or DBL) earlier in the process (as you're turning a 2-D into a 3-D, or even earlier), then you're more in control.
Tell us what analysis you're doing, and what VIs you're using.
Blog for (mostly LabVIEW) programmers: Tips And Tricks
05-19-2006 07:58 AM
05-19-2006 08:17 AM