I am implementing a sliding window as a LPF to smooth my data.
As long as I have a window size of W
, my final W
elements (window slides from the beginning to the end) or first W
elements (window slides from the end to beginning) will not be able to smoothed.
How does one deal with them?
Is there a good way to handle this?