How to generate a noise which sums up as zero?

조회 수: 3 (최근 30일)
ANANTA BIJOY BHADRA
ANANTA BIJOY BHADRA 2023년 8월 1일
편집: David Goodmanson 2023년 8월 1일
I have a sinusoidal downsampled signal. the size of the singal is 1*64. I need to add noise to that signal where sum of noise would be zero. How can I do that? The varience would be 0.001. I am new in this and don't have idea about this. I tried with randn command but I could get that? I tried the follwoing noise:
noise=randn(1,64)*sqrt(0.001)*240.
240 is the peak value of the singal and it has to be there.

답변 (1개)

David Goodmanson
David Goodmanson 2023년 8월 1일
편집: David Goodmanson 2023년 8월 1일
Hi Ananta,
noise=randn(1,64)*sqrt(0.001)*240
noise = noise - mean(noise);
if you subtract off the mean, then the new sum of the noise = 0.
Ordinarily you would add noise (variance=.001 in this case) to the signal. If you multiply the noise by 240, now its variance is up around 58 which may or may not be what you want.

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by