add white gaussian noise

5 ビュー (過去 30 日間)
Jessie Bessel
Jessie Bessel 2018 年 6 月 19 日
コメント済み: OCDER 2018 年 6 月 19 日
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?

回答 (1 件)

OCDER
OCDER 2018 年 6 月 19 日
signal_noise=awgn(signal,1,'measured')
SNR = 1 means 0 dB.
  2 件のコメント
Jessie Bessel
Jessie Bessel 2018 年 6 月 19 日
Ok.Any method, without awgn?
OCDER
OCDER 2018 年 6 月 19 日
noise = sig * randn(size(signal)); %sig is your standard dev.
signa_noise = signal + noise %you have to determine value of "sig".
%sig = std(signal) ?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePropagation and Channel Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by