How to recover the original signal from a noisy signal?

29 Ansichten (letzte 30 Tage)
Afaq Ahmad
Afaq Ahmad am 14 Jan. 2021
Kommentiert: Jon am 15 Jan. 2021
I am trying to recover the original signal as shown in (3,1,1). I have represented the signal using 10 discrete numerical values in (3,1,2). After adding some noise using randn(), I have received the "noisy" signal in (3,1,3). Now, I want to retrieve the original data (3,1,1) from the noisy signal. I am confused here on how to implement the logic.
The same concept goes for the (3,1,2) as well. The only difference is the noise (randn()) function. I don't know to get the (3,1,1) from either (3,1,2) or (3,1,3).
The code I've written:

Akzeptierte Antwort

Jon
Jon am 14 Jan. 2021
Bearbeitet: Jon am 14 Jan. 2021
You need to low pass filter the data and then downsample it.
If you have the Signal Processing Toolbox you can do these together using the decimate function.
Otherwise you need to first low pass filter your data (at least in the case where the data is noisy) and then downsample it.
The downsampling part, can be done without the Signal Processing Toolbox simply by indexing. So for example for a vector x to select every 10th value
idx = 1:10:numel(x)
xds = x(idx)
or more compactly
xds = x(1:10:numel(x))

Weitere Antworten (0)

Produkte


Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by