How to generate AWGN.??

Status
Not open for further replies.

Chethan Chethu

Member level 1
Joined
Aug 25, 2014
Messages
41
Helped
1
Reputation
2
Reaction score
1
Trophy points
8
Location
Bangalore, India, India
Activity points
255
Can any one tell me how to generate AWGN signals manually and its concept.. and wat are the calculations required for generating noise..??
 

AWGN - Add White Gausian Noise.

to generate white gaussian noise u need function that generates random numbers with gaussian distribution (example randn in matlab)
If your enviroment doesnt have gaussian distributed random generator you have to make one using standard random generator ( ex. rand function). So u have to:
1. u = rand; generate uniform random variable (0,1) (rand function)
2. convert it to Reyleigh distributed random variable r = sqrt(2*log(1/(1-u)));
3. wgn = r*cos(2*pi*u) |your gaussian distributed random variable|

as for concept: generally noise encountered in physical systems got Gaussian probability distribution rather then uniform distibution. (u can read more in wiki on that topic)
 

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…