add white gaussian noise

5 views (last 30 days)
Jessie Bessel
Jessie Bessel on 19 Jun 2018
Commented: OCDER on 19 Jun 2018
I tried to add noise to a signal. The signal noise ratio must be 0 dB. I tried with
signal_noise=awgn(signal,0,'measured')
Is there any method?

Answers (1)

OCDER
OCDER on 19 Jun 2018
signal_noise=awgn(signal,1,'measured')
SNR = 1 means 0 dB.
  2 Comments
Jessie Bessel
Jessie Bessel on 19 Jun 2018
Ok.Any method, without awgn?
OCDER
OCDER on 19 Jun 2018
noise = sig * randn(size(signal)); %sig is your standard dev.
signa_noise = signal + noise %you have to determine value of "sig".
%sig = std(signal) ?

Sign in to comment.

Categories

Find more on Propagation and Channel Models in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!