The FFT of real signal has the conjugate symmetric property. This property can be used to save half of the memory and half of the computation. This implementation is quite simple and I've done it.
Now I want to implement IFFT. Which applies on a conjugate symmetric signal, and a real signal is expected. As the IFFT is just the same as FFT with reversed sign twiddle factors. Is there any similar way to save half the computation and memory?