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.

communication channel simulation

Status
Not open for further replies.

BMWE

Member level 2
Joined
Apr 4, 2005
Messages
51
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,585
hello


i want to simulate (in Matlab) some kinds of channels and find the SER.
one thing i thought about is the place of generation of the channel coefficients and the noise - in the loop or outside the loop

i.e:

for i=1:length(SNR)
...
generate noise/sqrt(SNR)
generate channel
...
end


or

generate noise
generate channel
for i=1:length(SNR)
...
noise1=noise/sqrt(SNR)
...
end
 

simulate communication channel coefficients

hi,

There is not any meaningful difference between the two methods that you have provided.
Since you are working on different SNRs (The loop counter), therefore you can use the same noise and the same channel for them. but please note that the first method is slower (depending on the amount data you want to generate. you have to generate enough data based on the required accuracy)

hope it helped.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top