フィルターのクリア

how to filter awgn

9 ビュー (過去 30 日間)
jessica david
jessica david 2011 年 4 月 20 日
is there any way to filter awgn noise from my signal.
I tried using the function smooth(signal) but it totally distorts my data.
x = randint(100,1,8); % Random signal
signal = qammod(x,8);
add_noise=awgn(signal,10);
filternoise=smooth(add_noise);

回答 (1 件)

Kaustubha Govind
Kaustubha Govind 2011 年 4 月 20 日
SMOOTH simply performs a moving average on the signal, which is not sufficient to remove white noise. You need a filter designed to remove white noise. For example, the DSP System Toolbox Acoustic Noise Cancellation demo uses the LMS algorithm to achieve this.

カテゴリ

Help Center および File ExchangeMeasurements and Spatial Audio についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by