Clear Filters
Clear Filters

How can i add to an noise to signal?

2 views (last 30 days)
I have generated a code and implemented the database.

Accepted Answer

Star Strider
Star Strider on 7 Jul 2017
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 Comments
Aparna Gupta
Aparna Gupta on 7 Jul 2017
@Star Strider,Yu have helped in every possible way,thanks for the help :)

Sign in to comment.

More Answers (0)

Categories

Find more on EEG/MEG/ECoG in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!