sliding window for a sampled signal
Show older comments
I sampled a continuous signal by using rate transition block in Simulink. now, How can I calculate the maximum absolute value of previous i.e. 100 samples for each input sample. is there any simulink block? or should I use any digital filter and how?
1 Comment
Walter Roberson
on 19 Oct 2018
Please do not close Question that have an Answer.
Answers (2)
Rik
on 5 Jul 2017
When you have the signal as a vector, you can use movmean to find the moving average. You can modify the window to only include the previous 99 values to get a 100 value wide window.
M = movmean(A,[99 0]);
Walter Roberson
on 9 Jul 2017
0 votes
Categories
Find more on Measurements and Statistics in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!