In many books and papers, they used to use the complex form of the channel effect response. However, in reality, the signal is real values and also the channel.
Is it correct to use the following approximation? (in MATLAB)
% Rayleigh channel fading
eta = 4; %Path loss exponent
d = 200; %Distance from BS to the user
h_var = sqrt(d^-eta); % channel effect variance, mean is zero
h = h_var*randn(1,length(tx))/sqrt(2);