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.

Channel normalization in MATLAB simulation

Status
Not open for further replies.

umardar27

Junior Member level 1
Joined
Mar 19, 2007
Messages
18
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,428
channel normalization

Hi,
I am simulating BPSK in fading channel. I am using three taps channel.i.e
h=(1/sqrt(2)).*abs((randn(1,3)+j*randn(1,3)))
My quiery is that i have studied that the channel has to be normalizied for all such simulation. What does this mean and how it is done?
Is the above command line is correct or following is correct
h=(1/sqrt(6)).*abs((randn(1,3)+j*randn(1,3)))
Please give me the basic knowledge of this channel normalization.
please also tell me do the same theory applies for the noise scaling for calculating Eb/No.
Thanks,
 

normalization in matlab

Channel normalization in MATLAB

h=(1/sqrt(2)).*abs((randn(1,3)+j*randn(1,3)));
h = h./norm(h);

this method is refer channel power to be 1.

And more, i have found a good discuss about normalization here.



hope u got :D
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top