how can i add noise in particular place of the sine wave?
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Rick Rosson
on 6 Mar 2015
Edited: Rick Rosson
on 6 Mar 2015
noise = [ zeros(N,1) ; rand(M,1) ];
distorted = source + noise;
2 Comments
Zikobrelli
on 6 Mar 2015
Edited: Zikobrelli
on 6 Mar 2015
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
More Answers (0)
See Also
Categories
Find more on Signal Generation, Manipulation, and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!