Hi everybody
I have a memory leakage when using the FFT() funtion in the Advanced Analysis library. I have evn tried the example code given by NI:
double x[256], y[256];
int n = 256;
unsigned int UsedBlocks, UsedBytes;
Uniform (n, 17, x);
Uniform (n, 17, y);
CVIDynamicMemoryInfo ("", &UsedBlocks, &UsedBytes, DYNAMIC_MEMORY_SHOW_ALLOCATED_MEMORY_SUMMARY);
FFT (x, y, n);
CVIDynamicMemoryInfo ("", &UsedBlocks, &UsedBytes, DYNAMIC_MEMORY_SHOW_ALLOCATED_MEMORY_SUMMARY);
The UsedBlocs and UsedBytes is increased after the call to FFT. Any ideas?
Thanks in advance
-burobengen