Wavelet denoising on low pass filtered signal
9 次查看(过去 30 天)
显示 更早的评论
Hello,
I'm having an issue with the wdenoise function.
I'm sampling essensially white noise, hardware filtered to 200 MHz, at 2.5 GS/s with an oscilloscope.
I'm then denoising this data by using the following function:
wdenoise(x, 15,'Wavelet', 'sym8', 'DenoisingMethod','UniversalThreshold', ...
'ThresholdRule','Soft', 'NoiseEstimate','LevelIndependent');
It works great:

The next step is to first filter the 200 MHz signal using a digital low pass filter to 20 MHz:
df = designfilt('lowpassfir','FilterOrder',110,'CutoffFrequency',20e6/(2.5e9/2));
D = mean(grpdelay(df));
y = filter(df,[x zeros(D,1)']);
y = y(D+1:end);
The filter works great:

Now comes the problem - I'm trying to wdenoise the filterd signal, and instead of getting at least the same picture as with the 200 MHz after denoising, the signal after LPF and the signal after denoising said filtered signal are literally the same waveform.
I'm not a DSP expert and not hugely familiar in the inner workings of each function, so I'm most likely missing something. Please help.
4 个评论
Mathieu NOE
2022-11-23
so if I understand correctly the matlab wavelet denoising is not giving you the expected results (as I can see in your original post)
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Denoising 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




