How do I find only the small peaks in the signal?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Gobala Krishnan P Sivaganam
el 7 de Feb. de 2017
Respondida: Star Strider
el 7 de Feb. de 2017
Hi, I am currently doing project regarding PPG signal to measure BP. I am not sure why there are unnecessary waves in the signal though I filtered the signal. So is there anyway to find the peaks of my necessary signal alone? The peak of the signal lies less than 50(y value). The PPG signal is the small triangle like wave. Other waves are unnecessary and i want to find the peak of those small triangles alone. Please do help me. Thanks in advance.
0 comentarios
Respuestas (2)
John Chilleri
el 7 de Feb. de 2017
Editada: John Chilleri
el 7 de Feb. de 2017
Hello,
I would recommend using simple high and low pass filters to acquire the smaller peaks.
In other words, filter out data above and below where they approximately are:
Data = Data(Data > 5);
Data = Data(Data < 25);
Then plot the data, and when it looks like you have isolated the smaller peaks, then simply determine the max of the current values, and that should be the peaks.
ALTERNATIVELY, you can always use the data tool that looks like a blue plus sign with a yellow note, and select the peaks to see their x and y values.
Hope this helps!
0 comentarios
Star Strider
el 7 de Feb. de 2017
The spikes are artifacts of the sampling process. The only way I know of to get rid of them is to take the absolute value of your signal (so they’re all positive), then use the findpeaks function (returning the indices as the second argument, not the times) to eliminate them by deleting those elements from the signal and time vectors. Then use that signal and time vector and your original time vector to interpolate your signal. That should eliminate most of the spikes. Use that result for your analyses.
Then use findpeaks again to locate your PPG peaks. It has a number of name-value pair arguments that should allow you to identify them reliably, even if there are a few remaining low-amplitude spikes.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!