How to calculate a running value of a function for every 30 samples?
1 view (last 30 days)
Show older comments
clear all;
clc;
Nt= 2000; % Total samples
d = randn(1,Nt);
ratioCompute = sum(d)/mean(d);
I need calculate this ratioCompute for every 30 samples like a sliding window.
0 Comments
Answers (1)
Chunru
on 29 Nov 2022
Nt= 50; % Total samples
d = randn(1,Nt);
ratioCompute = movmean(d, 30)
4 Comments
See Also
Categories
Find more on Debugging and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!