How can i add to an noise to signal?
2 次查看(过去 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 中查找有关 Biomedical Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!