Downsampling of RPM traces

1 visualización (últimos 30 días)
MAT-Magic
MAT-Magic el 10 de En. de 2020
Editada: MAT-Magic el 22 de En. de 2020
Hi,
I have RPM trace signal (respiratory data) sampled at 26 Hz. I want to downsample RPM trace signal to 5.2 Hz. Does anyone know how to downsample this trace signal to 5.2 Hz?
Thanks in advance.

Respuesta aceptada

Star Strider
Star Strider el 10 de En. de 2020
I assume that the signal is sampled regularly, and a fixed sampling interval.
Use the Signal Processing Toolbox resample function. It will do exactly what you want.
A prototype call to it would be:
RPMrs = resample(RPM, 52, 260);
so the output will be sampled at 5.2/26 of the original rate.
To calculate a new time vector for it, use the linspace function.
Note that if it is not uniformly sampled, first follow the procedure in Resample a Nonuniformly Sampled Data Set, then do the rate resampling.
  15 comentarios
MAT-Magic
MAT-Magic el 22 de En. de 2020
Thank you so much Sir !!!
Star Strider
Star Strider el 22 de En. de 2020
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by