Split every current signal into N segments of Length L

5 visualizaciones (últimos 30 días)
Chloe Sim
Chloe Sim el 15 de Feb. de 2020
Comentada: Star Strider el 16 de Feb. de 2020
Hello! I have a 3 phase raw current signal that I want to split into 100 segments of 0.1 second so as to reduce the data size for signal processing and takes only the peak to peak and amplitude maximum values. How can I archieve this in MATLAB?
  1 comentario
dpb
dpb el 15 de Feb. de 2020
Well, 0.1s of your signal will be however many points is 0.1/dt where dt is your sample rate.
Many of the signal processing toolbox functions work by windowing or virtually all Matlab functions will treat columns of an array as independent observations and operate by column.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 15 de Feb. de 2020
Assuming I understand waht you want to do, I would use the Signal Processing Toolbox buffer function to do that.
You would have to calculate ‘L’ (number of samples) based on your sampling frequency (in samples/time unit), so if the time units are seconds L = 0.1*sampling_frequency.
The buffer function returns the segments in column-major order, so you can do the fft on the output of your buffer call:
FT = buffer(your_signal, L)/L;
will return the scaled complex Fourier transform of each column.
  6 comentarios
Chloe Sim
Chloe Sim el 16 de Feb. de 2020
Okays! Thank you so much for helping me!
Star Strider
Star Strider el 16 de Feb. de 2020
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Spectral Measurements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by