Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

DFT Circular Convolution

Status
Not open for further replies.

naspek

Member level 1
Joined
Feb 17, 2010
Messages
37
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,546
Let say the circular convolution of two discrete-time signals x1[n] and x2[n] produces yet another discrete-time signal y[n] of the same length.
How am I going to recover x2[n] from knowing x1[n] and y[n]?

Thank you.
 

this would be a problem of "deconvolution". This is not always well posed. For examples, if x1[n] = 0 or more generally if any bin of fft(x1) = 0 then it becomes much more difficult.

The process in other cases would be to determine an x3[n] with the property that x3[n] * x2[n] = 1 when n = 0, and 0 otherwise. (where * is circular convolution for this problem).

This is a bit easier in the FFT domain -- the fft of the impulse function is simply a constant real value at all bins. you can easily compute X3_k = q / X2_k. (q is a constant, X2_k is the k'th bin of the fft of x2, X3_k is the k'th bin of the fft of x3). You then take the inverse FFT of X3 to get x3[n] (though you might want to wait).

Now you can take y[n] and do a circular convolution with x3. this would give x1 * x2 * x3 = x1 * (x2 *x3) = x1 * (impulse) = x1.

There are clearly some numerical issues if the fft of x2 has a large dynamic range, or has 0's in any bin. The general topic of "deconvolution" has approximation and numerical methods that improve accuracy for these cases. (eg, an approximation would simply set 0 values to some low value to at least allow computation to be done)
 

convolution of x1 and x2 may be performed as IFFT(FFT(x1).*FFT(x2)) where .* is a simple multiplication of corresponded bins of x1 and x2 spectra.
So reconstruction of x2 may be performed as IFFT from FFT(y)./FFT(x1) I think (where ./ is a simple division of corresponded bins)
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top