Borrar filtros
Borrar filtros

How can i add to an noise to signal?

2 visualizaciones (últimos 30 días)
Aparna Gupta
Aparna Gupta el 7 de Jul. de 2017
Comentada: Star Strider el 8 de Jul. de 2017
I have generated a code and implemented the database.

Respuesta aceptada

Star Strider
Star Strider el 7 de Jul. de 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 comentarios
Aparna Gupta
Aparna Gupta el 7 de Jul. de 2017
@Star Strider,Yu have helped in every possible way,thanks for the help :)
Star Strider
Star Strider el 8 de Jul. de 2017
As always, my pleasure.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre EEG/MEG/ECoG en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by