How can i add to an noise to signal?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Aparna Gupta
am 7 Jul. 2017
Kommentiert: Star Strider
am 8 Jul. 2017
I have generated a code and implemented the database.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Biomedical Signal Processing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!