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.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…