필터 지우기
필터 지우기

Addition of gaussian noise

조회 수: 6 (최근 30일)
Kirthika
Kirthika 2012년 2월 15일
can you tell me matlab codes to add gaussian noise to a ecg signal?

답변 (2개)

Tom Lane
Tom Lane 2012년 2월 15일
I don't know anything about ecg signals, but "help randn" will show you how to generate Gaussian noise.

Thomas
Thomas 2012년 2월 15일
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)

카테고리

Help CenterFile Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by