How can I find the baseline of signal?

16 visualizaciones (últimos 30 días)
Yuhan Yang
Yuhan Yang el 2 de Mzo. de 2021
Respondida: Star Strider el 2 de Mzo. de 2021
I have a signal like this. How to compute the baseline of the signal? I way trying to use medfilt1, but I can't get rid of the peaks.

Respuestas (1)

Star Strider
Star Strider el 2 de Mzo. de 2021
See if the min function will do what you want.
If you want to plot a horizontal line indicating the minimum, and if ‘y’ is the signal you are plotting, one option is:
plot(xlim, [1 1]*min(y))
another option is:
yline(min(y))
.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by