How can i add to an noise to signal?
조회 수: 6 (최근 30일)
이전 댓글 표시
I have generated a code and implemented the database.
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!