Addition of gaussian noise

Réponses (2)

Tom Lane
Tom Lane le 15 Fév 2012

0 votes

I don't know anything about ecg signals, but "help randn" will show you how to generate Gaussian noise.
Thomas
Thomas le 15 Fév 2012

0 votes

To add white Gaussian noise:
(assuming you are adding noise for each time step, have your signal in vector 'signal')
rnoise=randn(1,NoTimeSteps);
NoiseAddedData=signal+rnoise;
something like this should work. (FYI, I'm modifying this from my code on Sensor networks, where I have to add white Gaussian noise to simulate noise from the environment for target tracking)

Tags

Aucun tag saisi pour le moment.

Question posée :

le 15 Fév 2012

Community Treasure Hunt

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

Start Hunting!

Translated by