How can i add to an noise to signal?

2 ビュー (過去 30 日間)
Aparna Gupta
Aparna Gupta 2017 年 7 月 7 日
コメント済み: Star Strider 2017 年 7 月 8 日
I have generated a code and implemented the database.

採用された回答

Star Strider
Star Strider 2017 年 7 月 7 日
This will add normally-distributed broadband random noise to your EEG signal vector:
sd = 0.1; % Standard Deviation Of Random Noise Vector
normal_noise = sd*randn(1, N); % Create Normally-Distributed Random Noise Vector With Standard Deviation = ‘sd’
noisy_EEGsig = EEGsig + normal_noise; % Add Noise To ‘EEGsig’
  6 件のコメント
Aparna Gupta
Aparna Gupta 2017 年 7 月 7 日
@Star Strider,Yu have helped in every possible way,thanks for the help :)
Star Strider
Star Strider 2017 年 7 月 8 日
As always, my pleasure.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBiomedical Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by