I am using large arrays with up to 500,000 elements. After each iteration, I can release about 3,000 elements to memory with

Redim Preserve Array(size-3000)

How can I assign the newly released memory to work on the remaining floating point operations that need to be done?

pete