How can i add to an noise to signal?

조회 수: 6 (최근 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 CenterFile Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by