フィルターのクリア

adding noise 15 db

4 ビュー (過去 30 日間)
Muhammad Faisol
Muhammad Faisol 2012 年 1 月 15 日
コメント済み: anass naqqad 2019 年 11 月 5 日
hi everyone.. i want to ask something..
this is my source code..
t=0:0.01:5;
num= [0 0 0.31185 8.28 55.2];
denum=[0.001088 0.044 0.69185 9.28 55.2];
sys=tf(num,denum);
step(sys,t)
grid
title ('Unit-Step Response')
xlabel('t')
ylabel('Amplitudo')
how to adding noise 15 dB to this coding? thanks for your help

採用された回答

Greg Heath
Greg Heath 2012 年 1 月 16 日
I don't know about your coding. However, I add Gaussian noise to a noise free signal, s0, as follows
P0 = mean(s0.^2)
SNR = 10^(SNRdb/10)
s = s0 + sqrt(P0/SNR)*randn(size(s0));
Hope this helps.
Greg
  2 件のコメント
Souarv De
Souarv De 2019 年 7 月 21 日
What is s0?
anass naqqad
anass naqqad 2019 年 11 月 5 日
It's just the noise free signal

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatched Filter and Ambiguity Function についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by