How to add multiplicative noise to audio?

6 ビュー (過去 30 日間)
studentmatlaber
studentmatlaber 2022 年 5 月 31 日
コメント済み: studentmatlaber 2022 年 6 月 1 日
Hello everyone, I want to add multiplicative noise on top of the sounds. There is an example in the link attached to the picture. Can I add this code to my audio file in the same way?
J = imnoise(I,'speckle')
adds multiplicative noise using the equation J = I+n*I, where n is uniformly distributed random noise with mean 0 and variance 0.05.

採用された回答

Jan
Jan 2022 年 5 月 31 日
編集済み: Jan 2022 年 5 月 31 日
According to the name "multiplicative noise" I'd expect this to work also:
t = linspace(0, 5, 5 * 1000);
yourSound = sin(2 * pi * 8000 * t);
noise = randn(size(t)) * 0.05;
result = yourSound .* (1 + noise);
  3 件のコメント
Jan
Jan 2022 年 6 月 1 日
I do not understand, what this means: "How do we know there is multiplicative noise here?" The code I've posted creates multiplicative noise explicitly. So we know this, because we did this on purpose.
Additive noise means: output = signal + noise
Multiplicative noise means: output = signal * (1 + noise)
studentmatlaber
studentmatlaber 2022 年 6 月 1 日
ı was confused. Now i understand. Thank you so much.

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2022 年 5 月 31 日
Most image processing functions will also work with 1-D signals, as is the case with imnoise
v = 1 : 100;
vNoisy = imnoise(v, 'speckle', 2);
  1 件のコメント
studentmatlaber
studentmatlaber 2022 年 6 月 1 日
thank you so much.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAudio I/O and Waveform Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by