How can I find the baseline of signal?

26 Ansichten (letzte 30 Tage)
Yuhan Yang
Yuhan Yang am 2 Mär. 2021
Beantwortet: Star Strider am 2 Mär. 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.

Antworten (1)

Star Strider
Star Strider am 2 Mär. 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))
.

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by