Noise Cancellation Without reference signal

Anyone here have done the Noise Cancellation Without reference signal. Please share the Matlab code. Thank you

1 件のコメント

Neil Taylor
Neil Taylor 2019 年 10 月 4 日
An old post but DD above is correct. Also look for Adaptive self-tuning filters, and self-tunning Kalman filters.

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

回答 (3 件)

Image Analyst
Image Analyst 2013 年 11 月 13 日
編集済み: Image Analyst 2013 年 11 月 14 日

1 投票

There are lots of ways to reduce noise without any reference signal. For example convolving with a box/rect filter.
smoothedSignal = conv(noisySignal, ones(1,11)/11, 'same');
Did you have some specific method in mind?

3 件のコメント

Da Da
Da Da 2013 年 11 月 14 日
I am asking about the filtering work Without the reference signal. With the reference I did already.
Walter Roberson
Walter Roberson 2013 年 11 月 14 日
I checked Google Scholar, but I do not find any papers on the topic "Noise Cancellation Without Reference Signal" ?
Image Analyst
Image Analyst 2013 年 11 月 14 日
編集済み: Image Analyst 2013 年 11 月 14 日
There is no reference signal in my code, just the noisy signal, a box filter (a rect function), and an output signal.

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

Umair Nadeem
Umair Nadeem 2013 年 11 月 14 日
編集済み: Umair Nadeem 2013 年 11 月 14 日

0 投票

You can use a digital lowpass filter to reduce the high frequency noise peaks. Any filter would do the job but a Butterworth filter has a better response because of minimum ripples in the passband.
Sample code:
[num den] = butter(3, wn, 'low');
output = filter(num, den, input);
here take wn = signal_freq/sampling_freq, if you dont know the sampling frequency then take
wn = any value between 0.1 and 0.9 and check the response for the most suitable wn value.
Hope this helps. Your feedback will be appreciated. Thanks
jnaumann
jnaumann 2013 年 11 月 14 日

0 投票

It sounds like you are after an Adaptive Linear Enhancer (ALE) - some info given here

カテゴリ

ヘルプ センター および File ExchangeSignal Generation, Analysis, and Preprocessing についてさらに検索

質問済み:

2013 年 11 月 13 日

コメント済み:

2019 年 10 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by