How to recover the original signal from a noisy signal?
25 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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:
Risposta accettata
Jon
il 14 Gen 2021
Modificato: Jon
il 14 Gen 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))
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multirate Signal Processing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!