Azzera filtri
Azzera filtri

add white gaussian noise

5 visualizzazioni (ultimi 30 giorni)
Jessie Bessel
Jessie Bessel il 19 Giu 2018
Commentato: OCDER il 19 Giu 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?

Risposte (1)

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

Accedi per commentare.

Categorie

Scopri di più su Propagation and Channel Models in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by