Borrar filtros
Borrar filtros

How to identify the baseline

44 visualizaciones (últimos 30 días)
Ibrahim Suleiman
Ibrahim Suleiman el 31 de Mzo. de 2021
Comentada: Star Strider el 23 de Abr. de 2021
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?

Respuesta aceptada

Star Strider
Star Strider el 31 de Mzo. de 2021
Since the baseline appears to be the minimum value, the min function may do what you want. There are similar functions that can extend that approach if you need to use them.
  9 comentarios
Ibrahim Suleiman
Ibrahim Suleiman el 23 de Abr. de 2021
Thank you for your help. This aproach makes the most sense to me.
Star Strider
Star Strider el 23 de Abr. de 2021
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 31 de Mzo. de 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);

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by