필터 지우기
필터 지우기

How can i transmit a modulated signal through a AWGN channel which adds a zero mean gaussian real random number with variance s^2

조회 수: 1 (최근 30일)
M = 4;
data=randi([0, M-1], 10000,1);
modData = pammod(data,M);
scatterplot(modData)
title('4-PAM');
snr=[0 2 4 6 8 10 12 15];
y=awgn(modData,snr);
scatterplot(y)
  댓글 수: 2
John BG
John BG 2016년 3월 26일
Simulink already has a block for AWGN channels where you can change the setting to your values of interest.
Vidya Viswanathan
Vidya Viswanathan 2016년 3월 29일
You could consider using "comm.AWGNChannel" System object. This provides you with a lot of options including one to specify the noise variance. Refer to the following documentation link for the same:
As pointed out by John, the same is available in Simulink as well. The following link describes the block corresponding to AWGN channel: http://www.mathworks.com/help/comm/ref/awgnchannel.html

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by