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.

convolution of Gaussian pulses

Status
Not open for further replies.

purnapragna

Advanced Member level 4
Joined
Oct 21, 2005
Messages
107
Helped
6
Reputation
14
Reaction score
3
Trophy points
1,298
Activity points
2,287
gaussian convolution

What is the final result if i convolve two Gaussian pulses i.e.,
\[e^{-t^2}*e^{-t^2}=?\]
If i convolve for \[n\] times what is the result?

thnx

purna!
 
Last edited by a moderator:

convolution gaussian

the result is

1/2*pi^(1/2)*2^(1/2)*exp(-1/2*t^2)

i used matlab for this by convert exp(-t^2) into freq domain the i multiplyed it by itself
then i reconvert it in time domain again
the code is

syms t
a=fourier(exp(-t^2));
a=a^2;
i=ifourier(a)
pretty(i)

for n time convolution you should do this n times
 

convolution of gaussian

Hey after i have done in Frequency domain i got the Gaussian pulse as the answer
But why like this can anybody explain?

thnx

purna!
 

convolution of two gaussians

Hi purna,

The result is a gaussian pulse sqrt(2) times wider.
You get this result by directly solving the convolution integral.

Another interesting way to consider this is as follows:
The Fourier transform (FT) of a gaussian pulse (in time) is a gaussian function (in frequency). This if found by solving the integral of the FT.
The product of the gaussian function by itself is a gaussian function, sqrt(2) times narrower. This is easy to show.
Going back to time domain, and using FT properties, you conclude that the convolution of a gaussian pulse by itself is a gaussian pulse sqrt(2) times wider.
Regards

Z
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top