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.

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

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top