
How to generate complex additive white Gaussian noise with the mean 0 and variance of σ^2 .
4 次查看(过去 30 天)
显示 更早的评论
Hi ,
I'm looking forward to generate the noise vector n ∼ CN(0,σ^2IN), where IN is the identity matrix of N*N.
0 个评论
回答(1 个)
Parag
2025-3-7
编辑:Parag
2025-3-7
Hi, you can generate noise vector n∼CN(0,σ
IN) in MATLAB using the following approach:

N = 10; % Size of the noise vector
sigma = 1; % Standard deviation (sqrt of variance)
% Generate complex Gaussian noise
n = (randn(N,1) + 1j * randn(N,1)) * (sigma / sqrt(2));
% Verify mean and variance
mean_n = mean(n)
var_n = var(n)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Propagation and Channel Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!