How can I segment a time series signal?

2 visualizaciones (últimos 30 días)
Andre
Andre el 21 de Feb. de 2014
Comentada: Image Analyst el 22 de Feb. de 2014
Hi,
Any idea how can I break a signal like on this picture?
I have a sine wave segment, then noise, then another sine (different in amplitude and phase from the first one), another noise segment, and then the continuation of the first sine.
Thanks.
Andre
  3 comentarios
Paul
Paul el 22 de Feb. de 2014
Im pretty sure he just wants to plot the red lines to indicate the segments. Andre you can use the command line for this. See:
doc line
Image Analyst
Image Analyst el 22 de Feb. de 2014
Make it easy for us to help you. Attach an m-file that will produce the signal you show.

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Feb. de 2014
Do you have the Signal Processing Toolbox? The noisy segments can be detected by fitting the signal to a 5th order polynomial in a sliding window which is what the Savitzky-Golay filter does. Then subtract the sg-filtered signal from the original and threshold to find elements that are above some threshold - those will be the noisy regions.
You can find tall and short sine wave segments just by taking the RMS value of the signal. Tall segments will have a higher RMS and lower segments will have a lower RMS.
signalSquared = signal.^2
rms = conv(signalSquared, ones(1, windowWidth), 'same');
  2 comentarios
Andre
Andre el 22 de Feb. de 2014
Nice,
thank you very much Image Analyst,
gotta one more question about this.
Do you have any idea how can i get the differences between the phases of the two signals (first SIN, and the SIN after the first noise) ?
Andre
Image Analyst
Image Analyst el 22 de Feb. de 2014
You could find the peaks, perhaps with findpeaks(), and then look at where the "after" peaks are with respect to where the "should" be.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by