Split every current signal into N segments of Length L
8 次查看(过去 30 天)
显示 更早的评论
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 个评论
dpb
2020-2-15
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.
采纳的回答
Star Strider
2020-2-15
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Measurements and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!