add white gaussian noise

5 vues (au cours des 30 derniers jours)
Jessie Bessel
Jessie Bessel le 19 Juin 2018
Commenté : OCDER le 19 Juin 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?

Réponses (1)

OCDER
OCDER le 19 Juin 2018
signal_noise=awgn(signal,1,'measured')
SNR = 1 means 0 dB.
  2 commentaires
Jessie Bessel
Jessie Bessel le 19 Juin 2018
Ok.Any method, without awgn?
OCDER
OCDER le 19 Juin 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) ?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Propagation and Channel Models dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by