I have one question about AForge FFT. To fft i send complex array with 2048 elements. On exit I have 2048 complex elements. First of that always = (127,0) or (128, 0-1). And on preperties of DFT, first 1024 elements = last 1024 elements, but this is not true for AForge.Math.FourierTransform.FFT. I dont understand that i need to do. Please help me. I use it as:
Complex [] Array =new Complex [2048];
/*******fill the array************/
FourierTransform.FFT(Array, FourierTransform.Direction.Forward);