how can i add noise in particular place of the sine wave?
4 ビュー (過去 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!