I was studying Rayleigh channels from Wireless Communications, Second Edition by Andreas F. Molisch. The book states that by adding different in-phase and quadrature components multipath components the distribution of amplitudes of in phase and quadrature should be Gaussian due to central limit theorem, but in-phase component I(t) and quad components q(t) are random processes but central theorem is for random variables so it can't be applied. What is wrong here in my thinking?
I also wrote a MATLAB program to simulate addition of many random inphase components. The resultant amplitude distribution didn't fellow Gaussian distribution and the resultant inphase component wasn't even a cosine function.
clc
clear
av_function=0
for k=1:1000
n=5001;
x=randn(1,n);
y=randn(1,n);
a=randn(1,n);
t=0:0.001:10;
sum_out=0;
for i=1:n
y=a(i)*cos(x(i)*t+y(i));
sum_out=sum_out+y;
max_A(k)=max(sum_out);
end
av_function=av_function+sum_out;
end
av_fucntion=av_function/k;
mean_max_A=mean(max_A);
figure
plot(max_A)
figure
plot(t,av_function)







R2 is the square of the norm of the standard bivariate normal variable (X, Y), it has the chi-squared distribution with two degrees of freedomwith that in the Rayleigh distribution Wiki article:the Rayleigh distribution ... [u]p to rescaling ... coincides with the chi distribution with two degrees of freedom.– V.V.T Apr 15 '23 at 11:52