End Points on movmean don't look right
Mostrar comentarios más antiguos
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 comentario
Image Analyst
el 2 de Oct. de 2021
"A(1)/1 =1" is not correct.
The correct equation is A(1)/1 = A(1).
Respuesta aceptada
Más respuestas (2)
Image Analyst
el 2 de Oct. de 2021
0 votos
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
el 2 de Oct. de 2021
0 votos
1 comentario
Matt J
el 2 de Oct. de 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.
Categorías
Más información sobre Aerospace Blockset en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
