How to make a rician fading from rayleigh fading

Status
Not open for further replies.

ilusiasay

Newbie level 2
Joined
Oct 15, 2008
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,304
hi, everyone !

I'm studing about MIMO-OFDM and simulation.

--------------------- a part of matlab source ------------------------------
% define a random Rayleigh channel
H = ( randn(M,4) + j * randn(M,4) ) / sqrt( 2.0 ); % (Mx4) matrix
-------------------------------------------------------------------------------

I made a Rayleigh fading channel matrix and now I've tried to make a Rician fading channel.

But I'm not sure that below source is right.

Someone check this and give a advice to me.

-------------------- matlab source -----------------------------
K_factor = 10; % Rician fading K-factor (dB)
Power_k = 10^(0.1 * K_factor);
Direct_p = 1;
Scatter_p = Direct_p / Power_k;

H = ( (Direct_p + randn(M,4)) + j * randn(M,4) ) / sqrt( 3.0 ); % (Mx4) matrix

-------------------------------------------------------------------

One more, I'm making a Sphere decoding, too.

But, it make me so tired.

Is the performance of Sphere decoding almost the same performance of Maximum likelihood?

My program is not. T.T

Anyway, have a good day everyone.
 

Rayleigh is exactly right.
But I am not sure about the Rician. If someone can help, I will also appreciate.
By the way, you define parameters Scatter_p and Power_k but never use them while generating the rician channel, H.
 

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…