产生均值为0,方差为0.1服从高斯分布的白噪声


clear;
u=randn(1,50000);
u=u*sqrt(0.1);
power_u=var(u);
subplot(211)
plot(u(1:200));
grid on
xlabel('n')
ylabel('x(n)')
subplot(212)
hist(u,50);
grid on
ylabel('histogram of u(n)');

产生均值为0,方差为0.1服从高斯分布的白噪声

你可能感兴趣的:(产生均值为0,方差为0.1服从高斯分布的白噪声)