How can I add gaussian noise in a specific percentage (e.g. add 5% gaussian noise to a signal)?

10 次查看(过去 30 天)
I have a regular signal in a vector, I want to add 5% gaussian noise to it, anyone got ideas? Thanks
  3 个评论

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2017-4-18
Try this:
period = 20;
t = linspace(-20, 20, 500);
signal = 10*sin(2 * pi * t / period);
noiseSigma = 0.05 * signal;
noise = noiseSigma .* randn(1, length(signal));
noisySignal = signal + noise;
plot(t, noisySignal, 'r.', 'MarkerSize', 10);
hold on;
plot(t, signal, 'b-', 'LineWidth', 3);
grid on;
  5 个评论
kasimala venkatanagaraju
sir, I want to generate noise contaminated signal with zero mean and standard deviation of 2%. Can you help me how to generate it.

请先登录,再进行评论。

更多回答(0 个)

类别

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