End Points on movmean don't look right
Show older comments
If you run the simple code (see end of post) you are taking the sliding window filter using matlab "movmean". Per the description:
"The window size is automatically truncated at the endpoints when there are not enough elements to fill the window. When the window is truncated, the average is taken over only the elements that fill the window. M is the same size as A."
If I read this correctly-for element 1 of the dataset, only element 1 "fills the window". Thus the average of A(1) is just A(1)/1 =1. Looking at my plot I do not see this--it appears as thought the first element is wrong--instead of 1, movmean returns 1.5.
What did I miss here?
Thanks--Fritz
========================================
for i=1: 10
A(i)=i;
end
for i=11: 20
A(i)=20-i;
end
plot(A,'b','LineWidth',2);
M=movmean(A,3)
hold on;
plot(M,'k','LineWidth',2);
fprintf("A(1)=%f\n",A(1)) ;
fprintf("M(1)=%f\n",M(1)) ;
fclose all;
1 Comment
Image Analyst
on 2 Oct 2021
"A(1)/1 =1" is not correct.
The correct equation is A(1)/1 = A(1).
Accepted Answer
More Answers (2)
Image Analyst
on 2 Oct 2021
0 votes
When the center of your 3-element window is over element 1 of A, which is
A =
1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1 0
the values 1 and 2 are inside the window.
The window does not travel so far that the center of the window is off the left side of A and only the tail overlaps the first element of A. If it did, then the output matrix would be larger than A.
So, the average of 1 and 2 is 1.5, like it is for M.
Fritz Sonnichsen
on 2 Oct 2021
0 votes
1 Comment
Matt J
on 2 Oct 2021
Glad you worked it out, but please Accept-click one of the answers, so that Mathworks has a record that a resolution was reached.
Categories
Find more on Aerospace Blockset 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!