warning: passing argument ’from incompatible pointer type [enabled by default]’
Drop ampersands from that line. The problem is that the & operator in this context produces an expression with a different type than what FFT expects. FFT expects a pointer to a double and &werte produces a pointer to an array of N elements. So, in order to make FFT happy, just pass werte which … Read more