通信基础-常用的一些分布

CSCG: Circularly Symmetric Complex zero-mean white Gaussian noise 循环对称复高斯噪声

CSCG:循环对称复高斯

数学定义:

含义

  • Circularly: means the variance of the real and imaginary parts are equal.
  • Gaussian: means the probability distribution of the amplitudes of the noise samples is Gaussian

Matlab

(randn(m,n)+1i*randn(m,n))*sigma/sqrt(2)

其中sigmal是方差

正态分布的再生性

设随机比昂量相互独立且分别服从正态分布,则服从正态分布

Rayleigh分布

复高斯分布的模服从瑞利分布:

Rayleigh分布和复高斯分布的关系

如果,即,则参数为的瑞利分布:

simulation

因为没有找到Rayleigh分布和复高斯分布的关系。使用matlab进行仿真验证。

untitled

非中心卡方分布

非中心卡方分布由若干独立同方差的均值不全为0的高斯随机变量平方和得到。

image-20220720161758149

值得注意的是,例如OneL文章中以及其他参考文献中所述,常常写为,其中,为自由度,为参数

所以,此时有期望(事先归一化了方差,所以这里比上式少了一个

方差(事先归一化了方差,所以这里比上式少了一个


参考书目:《数字通信》P46

非中心卡方分布的PDF为:

其中:

其CDF为:

其中generalized Marcum Q function.

matlab实现

generalized Marcum Q function 和modify bessel function of the first kind and order 可以直接用matlab函数:

marcumq(a,b,m) % calculate the generilized Marcum Q function
besseli(alpha,x) % calculate the modify bessel function of the first kind and order alpha

CDF和PDF推导

例如之前遇到的典型问题,三个随机变量分别服从参数为,,的指数分布,记为,即:

则其和的CDF为:

,则上式变为:

因为:

所以:

其中,有:

其PDF为:

高斯分布的任意高阶矩

clc;clear;close all;

% 阶数为n
for n=2:2:16
%     n=6;
    k=n/2;
    % s代表sigma  没有平方!!!!
    syms s
    if rem(k, 1) ~=0
        disp('Error: make sure n is even plz')
    else
        disp(n)
        moment = factorial(2*k)*s^(2*k)/(2^k*factorial(k))
    end
end

image-20221116100727821

参考Digital Communications-Fifth EditionJohn G. Proakis