Related to this question: Convolution in frequency space with fft and ifft -> num output samples?
When doing convolution in time domain by doing multiplication in frequency domain, you apparently can zero pad the time domain samples if you want the time domain convolution result (ifft of the fft multiplication result), to make the resulting time domain convolution be the "correct" length (len(a)+len(b)-1).
What I'm wondering is what do you do if you don't have the time domain samples yet?
I'm generating two sets of IFFT bin data, doing convolution by multiplying in the frequency domain, and then using IFFT to turn the convolution result into time domain data.
When i do this, the result is the same length as my IFFT bins though, instead of the length i would expect.
How do I lengthen the result in the frequency domain?
Thanks!