how can i add noise in particular place of the sine wave?
3 次查看(过去 30 天)
显示 更早的评论
i want to add noise in the middle of the sine wave. but if i use the rand() function it adds noise to the total signal.how to add noise in some parts of the signal only.kindly help me.......
0 个评论
采纳的回答
Rick Rosson
2015-3-6
编辑:Rick Rosson
2015-3-6
noise = [ zeros(N,1) ; rand(M,1) ];
distorted = source + noise;
2 个评论
Zikobrelli
2015-3-6
编辑:Zikobrelli
2015-3-6
you need to specify the values of M and N. For example, if you want to add noise to the first 10 points of your signal you can use,
N=10
M=numel(t)
changing the values of M and N will enable you to choose the signal indexes where the noise is applied
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Measurements and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!