- awgn(RX,SNR,'measured') adds noise to each sample of RX. If RX is a real vector, only the real component has noise added to it. If RX is a complex vector, noise with complex representation ‘a + ib’ is added to each element of RX. The values of ‘a’ and ‘b’ are generated using a gaussian distribution, where the magnitudes are dependent on the SNR value provided. The 'measured' option takes the current received signal power in consideration to generate the noise samples.
- As mentioned, this is valid only if the input RX samples are real. If it is complex IQ samples, then this may not be a valid assumption.
How awgn add white noise on complex envolope signal
20 次查看(过去 30 天)
显示 更早的评论
Hello
An I/Q baseband signal goes through Tx, the wave received by Rx at carrier (fc) with condisering receiver noise should be "rx_noise"
noise=0.1*rand(length(t),1)
rx = [I(t)*cos(2*pi*fc*t) - Q(t)*sin(2*pi*fc*t)]
rx_noise=rx.*noise
then use Matlab snr, we can get the SNR
SNR=snr(rx,noise);
the complex envolope of the rx is
RX=[I(t) + 1i*Q(t)].*exp(1i*2*pi*fc*t)
My question are:
- how "RX_noise=awgn(RX,SNR,'measured') " add noise to the RX?
- does real(Rx_noise) = rx_noise?
Many thanks in advance!
Chen
0 个评论
回答(1 个)
Kaashyap Pappu
2020-1-21
You can learn more about how the noise samples are generated by typing the following command in the command console:
edit awgn
Hope this helps!
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!