Background
I admit, this question stems from an ultimate lack of deep understanding of the underlying mathematics involved with digital signal processing; I'm still learning.
I want to take a set of amplitude samples, say 1024 (single channel), and bring them into the frequency domain. Obviously this requires a FFT; no problem there. The problem is that this only gives me frequencies up to the Nyquist frequency or 1024/2.
Question
If I have a stereo signal, can I merge the signals to produce 2048 amplitude samples thus returning 1024 frequency values? I'm looking to get higher resolution in the frequency domain.
So, can this be done and return meaningful frequency data? Is there any other way to take a stereo signal and end up with higher resolutions in the frequency domain?
What I've Found So Far
I came across an article that suggested taking the left signal and making it the real value and the right signal and making it the imaginary value of the complex-value for the FFT. This doesn't make sense to me, perhaps because I don't understand the math. I did try it, and it seemed to work, but I had signal leakage. So I applied a Hanning window, but that resulted in only 512 usable values after processing.