How to identify the baseline
Afficher commentaires plus anciens
I have force-time graph and I want to identify the baseline. How can I do this? Is there a function to find the baseline?

Réponse acceptée
Plus de réponses (1)
Image Analyst
le 31 Mar 2021
Maybe mask the signal to find values below a threshold and then take the mean
threshold = 10; % Or whatever.
baselineIndexes = abs(signal) < threshold;
baseLineValue = mean(signal(baselineIndexes));
yline(baseLineValue, 'Color', 'r', 'LineWidth', 2);
Catégories
En savoir plus sur Linear Predictive Coding dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!